Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Krautzberger <p.krautzberger@gmail.com>2015-01-21 12:42:51 +0300
committerAnthony Fok <foka@debian.org>2015-01-21 13:16:04 +0300
commite5be592ee0d0a24c9bfcf4938cbda4f77e07f3d2 (patch)
tree38b5e26c21fc7483692b870a6ccec4bb5928ba86
parent173aa53b8ae4bd5663d4ae4b155e4e60f56217e6 (diff)
fix outdated MathJax CDN URL
The rackspace address has been retired, see http://www.mathjax.org/changes-to-the-mathjax-cdn/
-rw-r--r--docs/content/tutorials/mathjax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/tutorials/mathjax.md b/docs/content/tutorials/mathjax.md
index 13aa2bbf2..d9ce020a7 100644
--- a/docs/content/tutorials/mathjax.md
+++ b/docs/content/tutorials/mathjax.md
@@ -21,7 +21,7 @@ This is not an introduction into actually using MathJax to render typeset mathem
The first step is to enable MathJax on pages that you would like to have typeset math. There are multiple ways to do this (adventerous readers can consult the [Loading and Configuring](http://docs.mathjax.org/en/latest/configuration.html) section of the MathJax documentation for additional methods of including MathJax), but the easiest way is to use the secure MathJax CDN by including the following HTML snippet in the source of a page:
<script type="text/javascript"
- src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
+ src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
One way to ensure that this code is included in all pages is to put it in one of the templates that live in the `layouts/partials/` directory. For example, I have included this in the bottom of my template `footer.html` because I know that the footer will be included in every page of my website.