Shared: Add BlockQuote to blocksToInlines

This commit is contained in:
Jesse Rosenthal 2016-06-22 13:41:53 -04:00
parent 2b701f9389
commit cbc2c15f0f

View file

@ -1031,6 +1031,7 @@ blockToInlines (Plain ils) = ils
blockToInlines (Para ils) = ils
blockToInlines (CodeBlock attr str) = [Code attr str]
blockToInlines (RawBlock fmt str) = [RawInline fmt str]
blockToInlines (BlockQuote blks) = blocksToInlines blks
blockToInlines (OrderedList _ blkslst) =
concatMap blocksToInlines blkslst
blockToInlines (BulletList blkslst) =