summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Rosenthal <jrosenthal@jhu.edu>2014-08-17 17:04:55 -0400
committerJesse Rosenthal <jrosenthal@jhu.edu>2014-08-17 17:04:55 -0400
commit198aea190fe24dfbc05c5c61e28322cbd4da2adc (patch)
tree175aeb206b96e926c1bee2a60d09a47f1d87374c
parent9da7b0946eed1ad5c7a781cbf765cc6fcd67afd9 (diff)
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.
-rw-r--r--src/Text/Pandoc/Readers/Docx.hs6
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"]