diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-08-12 22:08:30 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-08-12 22:08:30 -0400 |
commit | aae71ad595f78f6cb7dd1cc5cb0aaef0d3aaf5f1 (patch) | |
tree | d499be0bb18d758cc1cc5c2b06067abc333c719d /src/Text | |
parent | d4748038d76dd430f7c760e73487172a3264c5de (diff) | |
download | pandoc-aae71ad595f78f6cb7dd1cc5cb0aaef0d3aaf5f1.tar.gz |
Docx reader: Add "BlockQuotation" to divs list.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/Docx.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs index 9943ebeb8..bcfa4082e 100644 --- a/src/Text/Pandoc/Readers/Docx.hs +++ b/src/Text/Pandoc/Readers/Docx.hs @@ -272,7 +272,7 @@ codeSpans :: [String] codeSpans = ["VerbatimChar"] blockQuoteDivs :: [String] -blockQuoteDivs = ["Quote", "BlockQuote"] +blockQuoteDivs = ["Quote", "BlockQuote", "BlockQuotation"] codeDivs :: [String] codeDivs = ["SourceCode"] |