class Asciidoctor::Table::Cell

def content

Public: Handles the body data (tbody, tfoot), applying styles and partitioning into paragraphs
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