MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 23: | Line 23: | ||
head.appendChild(script); | head.appendChild(script); | ||
})(); | })(); | ||
Revision as of 17:47, 31 July 2017
/* Any JavaScript here will be loaded for all users on every page load. */
/** MathJax **/
(function() {
var head = document.getElementsByTagName("head")[0], script;
script = document.createElement("script");
script.type = "text/x-mathjax-config";
script[(window.opera ? "innerHTML" : "text")] =
"MathJax.Hub.Config({\n" +
" tex2jax: {\n" +
' inlineMath: [ ["\\\\(","\\\\)"],["[latex]","[\\\/latex]"] ],\n' +
' displayMath: [ ["\\\\[","\\\\]"],["$$","$$"] ],\n' +
" processEscapes: true,\n" +
" processEnvironments: true,\n" +
' skipTags: ["script","noscript","style","textarea","pre","code"]\n' +
" },\n" +
' TeX: { equationNumbers: { autoNumber: "AMS" } }\n' +
"});";
head.appendChild(script);
script = document.createElement("script");
script.type = "text/javascript";
script.src = "//special.miffyliye.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML";
head.appendChild(script);
})();