summaryrefslogtreecommitdiff
path: root/sphinx/ext/mathjax.py
diff options
context:
space:
mode:
authorMatt Hickford <matt.hickford@gmail.com>2015-01-25 20:35:00 +0000
committerMatt Hickford <matt.hickford@gmail.com>2015-01-25 20:35:00 +0000
commit2ebfd1dd30764ccd0f63ef8d1ac44180d2f62a67 (patch)
tree44e62c7b1ec46da8370a34975a9da4f0567e04d1 /sphinx/ext/mathjax.py
parent309e0169b0c3c52ffb9ca3c14bc5a64504ff1923 (diff)
downloadsphinx-git-2ebfd1dd30764ccd0f63ef8d1ac44180d2f62a67.tar.gz
Fix broken link to Mathjax
Consistent with http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn
Diffstat (limited to 'sphinx/ext/mathjax.py')
-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')