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,11 +1,13 @@
|
||||||
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,
|
||||||
|
processEnvironments: false,
|
||||||
},
|
},
|
||||||
messageStyle: "none",
|
messageStyle: "none",
|
||||||
skipStartupTypeset: true,
|
skipStartupTypeset: true,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue