class Kramdown::Converter::Latex

def convert_entity(el, opts)

def convert_entity(el, opts)
  text, package = ENTITY_CONV_TABLE[el.value.code_point]
  if text
    @doc.conversion_infos[:packages] << package if package
    text
  else
    @doc.warnings << "Couldn't find entity in substitution table!"
    ''
  end
end