Method: Utopia::Content::MarkupParser#parse!

Defined in:
lib/utopia/content/markup.rb

#parse!Object



104
105
106
107
108
109
110
# File 'lib/utopia/content/markup.rb', line 104

def parse!
  XRB::Parsers.parse_markup(@buffer, self, @entities)
  
  if tag = @stack.pop
    raise UnbalancedTagError.new(@buffer, tag)
  end
end