class Kramdown::Parser::Base

def self.parse(source, doc)

be implemented by each subclass.
Initializes a new instance of the calling class and then calls the #parse method that must

Kramdown document +doc+.
Parse the +source+ string into an element tree, using the information provided by the
def self.parse(source, doc)
  new(doc).parse(source)
end