Disable MathJax rendering of LaTeX formulas
当前为
// ==UserScript==
// @name Disable MathJax Rendering
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Disable MathJax rendering of LaTeX formulas
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 禁用MathJax渲染
if (window.MathJax) {
window.MathJax.Hub.Config({
tex2jax: {
inlineMath: [],
displayMath: []
}
});
}
})();