GitHub wiki ページはMathJaxをサポートしなくなりました。dotjs Chrome 拡張機能は、これらのページで MathJax を有効にする方法のようです。
これは、github.com ページで実行する JavaScript を作成する最初の試みであり、MathJax を有効にするために必要な正しいコードを挿入します。
[~]$ cat .js/github.com.js
(function () {
var script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML";
document.getElementsByTagName("head")[0].appendChild(script);
})();
ただし、これは機能せず、Chrome JavaScript コンソールに次のエラーが表示されます。
Uncaught EvalError: Refused to evaluate a string as JavaScript because 'unsafe-eval' is not an allowed source of script in the following Content Security Policy directive: "script-src 'self'
https://github.com https://a248.e.akamai.net https://jobs.github.com https://ssl.google-analytics.com https://secure.gaug.es https://collector.githubapp.com https://gist.github.com".
c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML:29
正しい JavaScript は何ですか?