From 59ddbdee4ff1d3bcae00630285a5a0acefeb9b56 Mon Sep 17 00:00:00 2001 From: KolenCheung <christian.kolen@gmail.com> Date: Mon, 9 May 2016 19:49:09 -0700 Subject: [PATCH] Loading the full MathJax config to maximize loading speed --- pandoc.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandoc.hs b/pandoc.hs index c77b34265..b686dbb90 100644 --- a/pandoc.hs +++ b/pandoc.hs @@ -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_CHTML" arg + let url' = fromMaybe "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_CHTML-full" arg return opt { optHTMLMathMethod = MathJax url'}) "URL") "" -- "Use MathJax for HTML math"