diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-03-08 10:08:14 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-03-08 10:08:14 -0800 |
commit | 6bfaa5ad15d2c3acfc61ddf5ec442ca733016373 (patch) | |
tree | 91518f7290ca7178f69d044a788802fdf3954dd0 /src/Text | |
parent | 0b9c54d9f31db88d5cd8e888921dffc2a108f8d4 (diff) | |
download | pandoc-6bfaa5ad15d2c3acfc61ddf5ec442ca733016373.tar.gz |
DokuWiki writer: use $$ for display math.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/Writers/DokuWiki.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/DokuWiki.hs b/src/Text/Pandoc/Writers/DokuWiki.hs index f1088b158..56e2b9027 100644 --- a/src/Text/Pandoc/Writers/DokuWiki.hs +++ b/src/Text/Pandoc/Writers/DokuWiki.hs @@ -452,8 +452,11 @@ inlineToDokuWiki _ (Code _ str) = inlineToDokuWiki _ (Str str) = return $ escapeString str -inlineToDokuWiki _ (Math _ str) = return $ "$" ++ str ++ "$" +inlineToDokuWiki _ (Math mathType str) = return $ delim ++ str ++ delim -- note: str should NOT be escaped + where delim = case mathType of + DisplayMath -> "$$" + InlineMath -> "$" inlineToDokuWiki _ (RawInline f str) | f == Format "dokuwiki" = return str |