summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsbrandtb <s.brandt.berlin@gmail.com>2014-06-05 08:39:03 +0000
committersbrandtb <s.brandt.berlin@gmail.com>2014-06-05 08:39:03 +0000
commit9f8acf58dd15284a698aa673ba11d51f50765d4b (patch)
tree5c5c70ad93cea8b09b03159f0d7b8f736e4a1a77
parente01bb112adb43526ccb7800ebec4229bc0196252 (diff)
downloadsphinx-9f8acf58dd15284a698aa673ba11d51f50765d4b.tar.gz
fixes #1459
-rw-r--r--sphinx/ext/mathjax.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py
index ee278667..f7914b2f 100644
--- a/sphinx/ext/mathjax.py
+++ b/sphinx/ext/mathjax.py
@@ -61,7 +61,7 @@ def builder_inited(app):
def setup(app):
mathbase_setup(app, (html_visit_math, None), (html_visit_displaymath, None))
app.add_config_value('mathjax_path',
- 'http://cdn.mathjax.org/mathjax/latest/MathJax.js?'
+ 'https://cdn.mathjax.org/mathjax/latest/MathJax.js?'
'config=TeX-AMS-MML_HTMLorMML', False)
app.add_config_value('mathjax_inline', [r'\(', r'\)'], 'html')
app.add_config_value('mathjax_display', [r'\[', r'\]'], 'html')