colah / colah.github.io

colah.github.io
811 stars 191 forks source link

existing mathjax link is outdated #41

Open hrbigelow opened 5 years ago

hrbigelow commented 5 years ago

In chromium 71 at least, MathJax doesn't render due to an outdated link. I used:

for f in $(find . -name '*.html'); do cp $f $f.orig; perl -lne '$_ =~ s%(?<!\<!--)(<script .+? src=")(.+?)(\?config=TeX-AMS-MMLHTMLorMML")%${1}https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js$3%; print $' $f.orig > $f; rm $f.orig; done

to update the links, as recommended in https://www.mathjax.org/cdn-shutting-down/

I spot-checked pages in chromium and firefox, and the equations render correctly.