class Kramdown::Converter::Latex

def convert(el, opts = {})

the element.
Dispatch the conversion of the element +el+ to a +convert_TYPE+ method using the +type+ of
def convert(el, opts = {})
  send("convert_#{el.type}", el, opts)
end