mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 20:57:13 -05:00
ignore tex environments/refs outside of math tags
This commit is contained in:
parent
e166b2204d
commit
324f3716ae
1 changed files with 18 additions and 16 deletions
|
|
@ -1,18 +1,20 @@
|
||||||
window.MathJax = {
|
window.MathJax = {
|
||||||
jax: ["input/TeX","output/CommonHTML"],
|
jax: ["input/TeX", "output/CommonHTML"],
|
||||||
extensions: ["tex2jax.js"],
|
extensions: ["tex2jax.js"],
|
||||||
TeX: {
|
TeX: {
|
||||||
extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js", "mhchem.js"]
|
extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js", "mhchem.js"]
|
||||||
},
|
},
|
||||||
tex2jax: {
|
tex2jax: {
|
||||||
displayMath: [ ["\\[","\\]"] ],
|
displayMath: [["\\[", "\\]"]],
|
||||||
},
|
processRefs: false,
|
||||||
messageStyle: "none",
|
processEnvironments: false,
|
||||||
skipStartupTypeset: true,
|
},
|
||||||
showMathMenu: false,
|
messageStyle: "none",
|
||||||
AuthorInit: function () {
|
skipStartupTypeset: true,
|
||||||
MathJax.Hub.processSectionDelay = 0;
|
showMathMenu: false,
|
||||||
MathJax.Hub.processUpdateTime = 0;
|
AuthorInit: function () {
|
||||||
MathJax.Hub.processUpdateDelay = 0;
|
MathJax.Hub.processSectionDelay = 0;
|
||||||
}
|
MathJax.Hub.processUpdateTime = 0;
|
||||||
|
MathJax.Hub.processUpdateDelay = 0;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue