From c3f5c5267bc1e6891a83935058075140f64a8a19 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Wed, 26 Oct 2016 05:17:53 -0700 Subject: [PATCH] Fix #142 --- lib/src/block_parser.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }