Added errorHandler Improve MathJax Performance #83
@ -8,9 +8,35 @@ window.MathJax = {
|
|||||||
options: {
|
options: {
|
||||||
ignoreHtmlClass: ".*|",
|
ignoreHtmlClass: ".*|",
|
||||||
processHtmlClass: "arithmatex"
|
processHtmlClass: "arithmatex"
|
||||||
|
},
|
||||||
|
mml: {
|
||||||
|
output: {
|
||||||
|
font: "mathjax"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
startup: {
|
||||||
|
ready() {
|
||||||
|
MathJax.startup.defaultReady();
|
||||||
|
MathJax.Config({
|
||||||
|
showErrorMessages: true,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
errorHandler: (errors) => {
|
||||||
|
console.error("MathJax encountered errors:", errors);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
document$.subscribe(() => {
|
document$.subscribe(debounce(() => {
|
||||||
MathJax.typesetPromise()
|
const mathElements = document.querySelectorAll('.arithmatex');
|
||||||
})
|
MathJax.typesetPromise(mathElements);
|
||||||
|
}, 250));
|
||||||
|
|
||||||
|
function debounce(func, wait) {
|
||||||
|
let timeout;
|
||||||
|
return function() {
|
||||||
|
const context = this, args = arguments;
|
||||||
|
clearTimeout(timeout);
|
||||||
|
timeout = setTimeout(() => func.apply(context, args), wait);
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user