diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-05-09 13:29:35 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-05-09 13:29:35 -0700 |
commit | 2571328700676dd075d22ca4d24010b92f1fc459 (patch) | |
tree | a2e86e301c030c20f8801f1210735eb2cc5cfa48 | |
parent | 888a273c1bb47b55177c66db26acbbfd4585aee2 (diff) | |
download | pandoc-2571328700676dd075d22ca4d24010b92f1fc459.tar.gz |
Use new CommonHTML output for MathJax (updated default MathJax URL).
Closes #2858.
-rw-r--r-- | pandoc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -836,7 +836,7 @@ options = , Option "" ["mathjax"] (OptArg (\arg opt -> do - let url' = fromMaybe "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML" arg + let url' = fromMaybe "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-MML-AM_CHTML" arg return opt { optHTMLMathMethod = MathJax url'}) "URL") "" -- "Use MathJax for HTML math" |