diff options
Diffstat (limited to 'src/Text/Pandoc/Readers')
-rw-r--r-- | src/Text/Pandoc/Readers/Docx.hs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Text/Pandoc/Readers/Docx.hs b/src/Text/Pandoc/Readers/Docx.hs index 513283005..6a33b6ea3 100644 --- a/src/Text/Pandoc/Readers/Docx.hs +++ b/src/Text/Pandoc/Readers/Docx.hs @@ -105,14 +105,12 @@ readDocx opts bytes = data DState = DState { docxAnchorMap :: M.Map String String , docxMediaBag :: MediaBag - , docxInHeaderBlock :: Bool - , docxInTexSubscript :: Bool } + , docxInHeaderBlock :: Bool} defaultDState :: DState defaultDState = DState { docxAnchorMap = M.empty , docxMediaBag = mempty - , docxInHeaderBlock = False - , docxInTexSubscript = False} + , docxInHeaderBlock = False} data DEnv = DEnv { docxOptions :: ReaderOptions , docxDocument :: Docx} |