class Kramdown::Converter::Html

def format_as_block_html(name, attr, body, indent)

Format the given element as block HTML.
def format_as_block_html(name, attr, body, indent)
  "#{' '*indent}<#{name}#{html_attributes(attr)}>#{body}</#{name}>\n"
end