class Kramdown::Converter::Html

def convert_p(el, indent, opts)

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