class Kramdown::Converter::Man

def convert_p(el, opts)

def convert_p(el, opts)
  if (opts[:index] != 0 && opts[:prev].type != :header) ||
      (opts[:parent].type == :blockquote && opts[:index] == 0)
    opts[:result] << macro("P")
  end
  inner(el, opts)
  newline(opts[:result])
end