diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-26 22:31:32 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-26 22:31:32 -0800 |
commit | a1378ed76bbefdd85e36674158103e991be6c578 (patch) | |
tree | eb1325cf520127e1112a014a1564457ee9f6c0e2 /src/Text | |
parent | 00004f042c7c49197d57968cae23785ffcba5c63 (diff) | |
download | pandoc-a1378ed76bbefdd85e36674158103e991be6c578.tar.gz |
Clearer deprecation warning for --latexmathml, --asciimathml, -m.
Previously we only mentioned `--latexmathml`, even if `-m` was
used.
Diffstat (limited to 'src/Text')
-rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
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" |