Add the summary of chapter divide and conquer

Enable instant loading feature
Fix the math rendering in mathjax.js
This commit is contained in:
krahets
2023-07-17 20:23:46 +08:00
parent 06b309d021
commit 34985bdf2b
4 changed files with 47 additions and 3 deletions

View File

@ -0,0 +1,16 @@
window.MathJax = {
tex: {
inlineMath: [["\\(", "\\)"]],
displayMath: [["\\[", "\\]"]],
processEscapes: true,
processEnvironments: true,
},
options: {
ignoreHtmlClass: ".*|",
processHtmlClass: "arithmatex",
},
};
document$.subscribe(() => {
MathJax.typesetPromise();
});