parse method
Implementation
@override
Node parse(BlockParser parser) {
final childLines = parseChildLines(parser);
// Recursively parse the contents of the blockquote.
final children = BlockParser(childLines, parser.document).parseLines();
return Element('blockquote', children);
}