Method: Layout#parse

Defined in:
lib/tags/layout.rb

#parse(tokens) ⇒ Object



76
77
78
79
80
81
82
# File 'lib/tags/layout.rb', line 76

def parse(tokens)
  t = tokens.shift
  while t
    @page_content.push t
    t = tokens.shift
  end
end