summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2015-01-25 21:50:33 +0100
committerGeorg Brandl <georg@python.org>2015-01-25 21:50:33 +0100
commit8e1150c956d880c3347bbdef5b18b801e40b7411 (patch)
tree44e62c7b1ec46da8370a34975a9da4f0567e04d1
parent309e0169b0c3c52ffb9ca3c14bc5a64504ff1923 (diff)
parent2ebfd1dd30764ccd0f63ef8d1ac44180d2f62a67 (diff)
downloadsphinx-git-8e1150c956d880c3347bbdef5b18b801e40b7411.tar.gz
Merge pull request #1691 from hickford/patch-1
Fix broken link to Mathjax
-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 edabbabb0..26d1e2aa1 100644
--- a/sphinx/ext/mathjax.py
+++ b/sphinx/ext/mathjax.py
@@ -64,7 +64,7 @@ def setup(app):
# more information for mathjax secure url is here:
# http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn
app.add_config_value('mathjax_path',
- 'https://c328740.ssl.cf1.rackcdn.com/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')