diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-06-22 13:41:53 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2016-06-23 10:50:46 -0400 |
commit | cbc2c15f0ffb1737a0f6540fb282adab7094423b (patch) | |
tree | 845c76b28a51a6a49dbc9f23e15ad4194c77c3ff /src | |
parent | 2b701f9389844e0a4d0a1a77c49e06fc5ae08ef3 (diff) | |
download | pandoc-cbc2c15f0ffb1737a0f6540fb282adab7094423b.tar.gz |
Shared: Add BlockQuote to blocksToInlines
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Shared.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs index 9153ec7e9..af81c49cd 100644 --- a/src/Text/Pandoc/Shared.hs +++ b/src/Text/Pandoc/Shared.hs @@ -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) = |