diff options
author | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-08-17 17:04:55 -0400 |
---|---|---|
committer | Jesse Rosenthal <jrosenthal@jhu.edu> | 2014-08-17 17:04:55 -0400 |
commit | 198aea190fe24dfbc05c5c61e28322cbd4da2adc (patch) | |
tree | 175aeb206b96e926c1bee2a60d09a47f1d87374c /src/Text | |
parent | 9da7b0946eed1ad5c7a781cbf765cc6fcd67afd9 (diff) | |
download | pandoc-198aea190fe24dfbc05c5c61e28322cbd4da2adc.tar.gz |
Docx reader: remove emph styles and strong styles list.
We no longer need the explicit lists since we're deriving them from the
ground up.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Readers/Docx.hs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs index 653439de1..319e95610 100644 --- a/src/Text/Pandoc/Readers/Docx.hs +++ b/src/Text/Pandoc/Readers/Docx.hs @@ -196,12 +196,6 @@ fixAuthors mv = mv codeStyles :: [String] codeStyles = ["VerbatimChar"] -strongStyles :: [String] -strongStyles = ["Strong", "Bold"] - -emphStyles :: [String] -emphStyles = ["Emphasis", "Italic"] - blockQuoteDivs :: [String] blockQuoteDivs = ["Quote", "BlockQuote", "BlockQuotation"] |