2013-06-03 62 views
5

GitHub維客頁面不再支持MathJax。似乎dotjs Chrome extension可能是在這些頁面上啓用MathJax的一種方式。如何在GitHub wiki頁面插入javascript以啓用MathJax?

這是我創造的JavaScript將執行上github.com網頁,並插入使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 Console中:

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?

+0

現在你知道_why_ GitHub上不再支持MathJax。 MathJax不適用於CSP。 https://github.com/blog/1477-content-security-policy – SLaks

+0

https://github.com/mathjax/MathJax/issues/256 – SLaks

+0

這是否意味着我不能做我想做的事情,除非MathJax兼容與CSP? – Michael

回答

0

我認爲這個問題是在MathJax的源代碼,因爲它使用的eval函數有