summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-11-26 22:31:32 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2017-11-26 22:31:32 -0800
commita1378ed76bbefdd85e36674158103e991be6c578 (patch)
treeeb1325cf520127e1112a014a1564457ee9f6c0e2
parent00004f042c7c49197d57968cae23785ffcba5c63 (diff)
Clearer deprecation warning for --latexmathml, --asciimathml, -m.
Previously we only mentioned `--latexmathml`, even if `-m` was used.
-rw-r--r--src/Text/Pandoc/App.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs
index 41b6a310b..34410191f 100644
--- a/src/Text/Pandoc/App.hs
+++ b/src/Text/Pandoc/App.hs
@@ -1437,7 +1437,7 @@ options =
, Option "m" ["latexmathml", "asciimathml"]
(OptArg
(\arg opt -> do
- deprecatedOption "--latexmathml"
+ deprecatedOption "--latexmathml, --asciimathml, -m"
return opt { optHTMLMathMethod = LaTeXMathML arg })
"URL")
"" -- "Use LaTeXMathML script in html output"