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