class Asciidoctor::Table::Cell
def content
def content style = attr('style') if style == :asciidoc @inner_document.render else text.split(Table::BLANK_LINE_PATTERN).map {|p| !style || style == :header ? p : Inline.new(parent, :quoted, p, :type => attr('style')).render } end end