aboutsummaryrefslogtreecommitdiff
path: root/src/Text/Pandoc/Options.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-01-30 11:31:50 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-01-30 11:31:50 +0100
commit7018003811f2b606808ddecb5c1ce12e27ad7d51 (patch)
tree9f70c8e454ee598f49a9f85f6c2e0a2ba4e629ac /src/Text/Pandoc/Options.hs
parent42257b9be935b92c9118d281543c26a30f04d44b (diff)
downloadpandoc-7018003811f2b606808ddecb5c1ce12e27ad7d51.tar.gz
`--mathml` and MathML in HTMLMathMethod longer take an argument.
The argument was for a bridge javascript that used to be necessary in 2004. We have removed the script already.
Diffstat (limited to 'src/Text/Pandoc/Options.hs')
-rw-r--r--src/Text/Pandoc/Options.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/Options.hs b/src/Text/Pandoc/Options.hs
index 02ae9f771..c00981d5d 100644
--- a/src/Text/Pandoc/Options.hs
+++ b/src/Text/Pandoc/Options.hs
@@ -89,7 +89,7 @@ data HTMLMathMethod = PlainMath
| JsMath (Maybe String) -- url of jsMath load script
| GladTeX
| WebTeX String -- url of TeX->image script.
- | MathML (Maybe String) -- url of MathMLinHTML.js
+ | MathML
| MathJax String -- url of MathJax.js
| KaTeX String String -- url of stylesheet and katex.js
deriving (Show, Read, Eq, Data, Typeable, Generic)