# File lib/asciidoctor/table.rb, line 229
  def content
    style = attr('style')
    if style == :asciidoc
      @inner_document.render
    else
      text.split(BLANK_LINE_PATTERN).map {|p|
        !style || style == :header ? p : Inline.new(parent, :quoted, p, :type => attr('style')).render
      }
    end
  end