diff options
author | Tiziano Müller <tm@dev-zero.ch> | 2015-07-13 14:19:45 +0200 |
---|---|---|
committer | Tiziano Müller <tm@dev-zero.ch> | 2015-07-13 14:19:48 +0200 |
commit | f464e49142b68b0044c11c843259e586f65b17b0 (patch) | |
tree | e483f556b9390f2cbe477cb787f99814c9e6fb4c /src | |
parent | 2df3dfe88391f9e5a0ec4e10aff0abbf0c88bb0a (diff) | |
download | pandoc-f464e49142b68b0044c11c843259e586f65b17b0.tar.gz |
DokuWiki: write $..$ instead of <math>..</math>
MathJax seems currently to be the only maintained math rendering
extension for DokuWiki and it uses $..$ instead of <math>..</math>.
Diffstat (limited to 'src')
-rw-r--r-- | src/Text/Pandoc/Writers/DokuWiki.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Writers/DokuWiki.hs b/src/Text/Pandoc/Writers/DokuWiki.hs index 7164c6e86..7ebe09db7 100644 --- a/src/Text/Pandoc/Writers/DokuWiki.hs +++ b/src/Text/Pandoc/Writers/DokuWiki.hs @@ -451,7 +451,7 @@ inlineToDokuWiki _ (Code _ str) = inlineToDokuWiki _ (Str str) = return $ escapeString str -inlineToDokuWiki _ (Math _ str) = return $ "<math>" ++ str ++ "</math>" +inlineToDokuWiki _ (Math _ str) = return $ "$" ++ str ++ "$" -- note: str should NOT be escaped inlineToDokuWiki _ (RawInline f str) |