class Kramdown::Converter::Latex

def convert_br(_el, opts)

def convert_br(_el, opts)
  res = +"\\newline"
  res << "\n" if (c = opts[:parent].children[opts[:index] + 1]) &&
    (c.type != :text || c.value !~ /^\s*\n/)
  res
end