class Asciidoctor::Extensions::Processor
def parse_content parent, content, attributes = nil
--
Returns The parent node into which the blocks are parsed.
Public: Parses blocks in the content and attaches the block to the parent.
def parse_content parent, content, attributes = nil reader = Reader === content ? content : (Reader.new content) Parser.parse_blocks reader, parent, attributes parent end