class Kramdown::Converter::Html

def convert(el, indent = -@indent)

the element.
Dispatch the conversion of the element +el+ to a +convert_TYPE+ method using the +type+ of
def convert(el, indent = -@indent)
  send(DISPATCHER[el.type], el, indent)
end