parse method

  1. @override
Node? parse(
  1. BlockParser parser
)
override

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);
}