# File lib/asciidoctor/document.rb, line 629
  def content
    # per AsciiDoc-spec, remove the title before rendering the body,
    # regardless of whether the header is rendered)
    @attributes.delete('title')
    @blocks.map {|b| b.render }.join
  end