summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2016-12-24 15:57:23 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-01-25 17:07:42 +0100
commit93e4cd9f8ca30253d3bf31bbf6e13a762c4c78a0 (patch)
tree9714d460786f4a0928daec45abb12ed0f7bdf875 /src
parent5b3bfa28f4a093a1096f628b84180165bc4cff29 (diff)
Fixed something small that broke in rebase.
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Writers/Markdown.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/Markdown.hs b/src/Text/Pandoc/Writers/Markdown.hs
index 7f4d37b1f..6a5a1130e 100644
--- a/src/Text/Pandoc/Writers/Markdown.hs
+++ b/src/Text/Pandoc/Writers/Markdown.hs
@@ -1000,7 +1000,7 @@ inlineToMarkdown opts (Math DisplayMath str) =
| isEnabled Ext_tex_math_double_backslash opts ->
return $ "\\\\[" <> text str <> "\\\\]"
| otherwise -> (\x -> cr <> x <> cr) `fmap`
- texMathToInlines DisplayMath str >>= inlineListToMarkdown opts
+ (texMathToInlines DisplayMath str >>= inlineListToMarkdown opts)
inlineToMarkdown opts (RawInline f str) = do
plain <- asks envPlain
if not plain &&