From 198aea190fe24dfbc05c5c61e28322cbd4da2adc Mon Sep 17 00:00:00 2001 From: Jesse Rosenthal Date: Sun, 17 Aug 2014 17:04:55 -0400 Subject: [PATCH] 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. --- src/Text/Pandoc/Readers/Docx.hs | 6 ------ 1 file changed, 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"]