Shared: Add BlockQuote to blocksToInlines
This commit is contained in:
parent
2b701f9389
commit
cbc2c15f0f
1 changed files with 1 additions and 0 deletions
|
@ -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) =
|
||||
|
|
Loading…
Add table
Reference in a new issue