diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-12-24 15:57:23 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-01-25 17:07:42 +0100 |
commit | 93e4cd9f8ca30253d3bf31bbf6e13a762c4c78a0 (patch) | |
tree | 9714d460786f4a0928daec45abb12ed0f7bdf875 /src/Text/Pandoc | |
parent | 5b3bfa28f4a093a1096f628b84180165bc4cff29 (diff) | |
download | pandoc-93e4cd9f8ca30253d3bf31bbf6e13a762c4c78a0.tar.gz |
Fixed something small that broke in rebase.
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r-- | src/Text/Pandoc/Writers/Markdown.hs | 2 |
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 && |