aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Readers/DocBook.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Text/Pandoc/Readers/DocBook.hs')
-rw-r--r--src/Text/Pandoc/Readers/DocBook.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Readers/DocBook.hs b/src/Text/Pandoc/Readers/DocBook.hs
index 535ade658..0b45460b2 100644
--- a/src/Text/Pandoc/Readers/DocBook.hs
+++ b/src/Text/Pandoc/Readers/DocBook.hs
@@ -1106,9 +1106,8 @@ equation e constructor =
readMath :: (Element -> Bool) -> (Element -> b) -> [b]
readMath childPredicate fromElement =
- ( map (fromElement . everywhere (mkT removePrefix))
+ map (fromElement . everywhere (mkT removePrefix))
$ filterChildren childPredicate e
- )
-- | Get the actual text stored in a CData block. 'showContent'
-- returns the text still surrounded by the [[CDATA]] tags.