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 = {
|
||||
jax: ["input/TeX","output/CommonHTML"],
|
||||
extensions: ["tex2jax.js"],
|
||||
TeX: {
|
||||
extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js", "mhchem.js"]
|
||||
},
|
||||
tex2jax: {
|
||||
displayMath: [ ["\\[","\\]"] ],
|
||||
},
|
||||
messageStyle: "none",
|
||||
skipStartupTypeset: true,
|
||||
showMathMenu: false,
|
||||
AuthorInit: function () {
|
||||
MathJax.Hub.processSectionDelay = 0;
|
||||
MathJax.Hub.processUpdateTime = 0;
|
||||
MathJax.Hub.processUpdateDelay = 0;
|
||||
}
|
||||
jax: ["input/TeX", "output/CommonHTML"],
|
||||
extensions: ["tex2jax.js"],
|
||||
TeX: {
|
||||
extensions: ["AMSmath.js", "AMSsymbols.js", "noErrors.js", "noUndefined.js", "mhchem.js"]
|
||||
},
|
||||
tex2jax: {
|
||||
displayMath: [["\\[", "\\]"]],
|
||||
processRefs: false,
|
||||
processEnvironments: false,
|
||||
},
|
||||
messageStyle: "none",
|
||||
skipStartupTypeset: true,
|
||||
showMathMenu: false,
|
||||
AuthorInit: function () {
|
||||
MathJax.Hub.processSectionDelay = 0;
|
||||
MathJax.Hub.processUpdateTime = 0;
|
||||
MathJax.Hub.processUpdateDelay = 0;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue