class Kramdown::Converter::Html

def convert_p(el, indent)

def convert_p(el, indent)
  if el.options[:transparent]
    inner(el, indent)
  else
    "#{' '*indent}<p#{html_attributes(el.attr)}>#{inner(el, indent)}</p>\n"
  end
end