diff --git a/lib/src/block_parser.dart b/lib/src/block_parser.dart index 1211b81e..ed24f509 100644 --- a/lib/src/block_parser.dart +++ b/lib/src/block_parser.dart @@ -351,7 +351,7 @@ class BlockquoteSyntax extends BlockSyntax { var childLines = parseChildLines(parser); // Recursively parse the contents of the blockquote. - var children = parser.document.parseLines(childLines); + var children = new BlockParser(childLines, parser.document).parseLines(); return new Element('blockquote', children); }