Skip to content

Commit

Permalink
Merge pull request #143 from srawlins/fix-142
Browse files Browse the repository at this point in the history
Fix #142
  • Loading branch information
srawlins committed Oct 26, 2016
2 parents 617fe22 + c3f5c52 commit 765ec2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/block_parser.dart
Expand Up @@ -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);
}
Expand Down

0 comments on commit 765ec2c

Please sign in to comment.