class Kramdown::Parser::Base

def parse

This is the only method that has to be implemented by sub-classes!

tree the root of which should be @root.
The parsing code should parse the source provided in @source and build an element

Parse the source string into an element tree.
def parse
  raise NotImplementedError
end