Add ignoreTags to asciimath2jax to be consistent with tex2jax.

This commit is contained in:
Davide P. Cervone 2016-07-06 11:59:43 -04:00
parent 92e1ce90b5
commit 7b98391a68
2 changed files with 21 additions and 16 deletions

View File

@ -48,12 +48,21 @@ MathJax.Extension.asciimath2jax = {
// are ignored. Note that this is a regular expression,
// so be sure to quote any regexp special characters
preview: "AsciiMath" // set to "none" to not insert MathJax_Preview spans
preview: "AsciiMath" // set to "none" to not insert MathJax_Preview spans
// or set to an array specifying an HTML snippet
// to use the same preview for every equation.
},
//
// Tags to ignore when searching for AsciiMath in the page
//
ignoreTags: {
br: (MathJax.Hub.Browser.isMSIE && document.documentMode < 9 ? "\n" : " "),
wbr: "",
"#comment": ""
},
PreProcess: function (element) {
if (!this.configured) {
this.config = MathJax.Hub.CombineConfig("asciimath2jax",this.config);
@ -132,8 +141,7 @@ MathJax.Extension.asciimath2jax = {
if (this.search.matched) {element = this.encloseMath(element)}
if (element) {
do {prev = element; element = element.nextSibling}
while (element && (element.nodeName.toLowerCase() === 'br' ||
element.nodeName.toLowerCase() === '#comment'));
while (element && this.ignoreTags[element.nodeName.toLowerCase()] != null);
if (!element || element.nodeName !== '#text') {return prev}
}
}
@ -172,25 +180,24 @@ MathJax.Extension.asciimath2jax = {
},
encloseMath: function (element) {
var search = this.search, close = search.close, CLOSE, math;
var search = this.search, close = search.close, CLOSE, math, next;
if (search.cpos === close.length) {close = close.nextSibling}
else {close = close.splitText(search.cpos)}
if (!close) {CLOSE = close = MathJax.HTML.addText(search.close.parentNode,"")}
search.close = close;
math = (search.opos ? search.open.splitText(search.opos) : search.open);
while (math.nextSibling && math.nextSibling !== close) {
if (math.nextSibling.nodeValue !== null) {
if (math.nextSibling.nodeName === "#comment") {
math.nodeValue += math.nextSibling.nodeValue.replace(/^\[CDATA\[((.|\n|\r)*)\]\]$/,"$1");
while ((next = math.nextSibling) && next !== close) {
if (next.nodeValue !== null) {
if (next.nodeName === "#comment") {
math.nodeValue += next.nodeValue.replace(/^\[CDATA\[((.|\n|\r)*)\]\]$/,"$1");
} else {
math.nodeValue += math.nextSibling.nodeValue;
}
} else if (this.msieNewlineBug) {
math.nodeValue += (math.nextSibling.nodeName.toLowerCase() === "br" ? "\n" : " ");
} else {
math.nodeValue += " ";
var ignore = this.ignoreTags[next.nodeName.toLowerCase()];
math.nodeValue += (ignore == null ? " " : ignore);
}
math.parentNode.removeChild(math.nextSibling);
math.parentNode.removeChild(next);
}
var AM = math.nodeValue.substr(search.olen,math.nodeValue.length-search.olen-search.clen);
math.parentNode.removeChild(math);
@ -224,9 +231,7 @@ MathJax.Extension.asciimath2jax = {
return script;
},
filterPreview: function (asciimath) {return asciimath},
msieNewlineBug: (MathJax.Hub.Browser.isMSIE && (document.documentMode||0) < 9)
filterPreview: function (asciimath) {return asciimath}
};

View File

@ -263,7 +263,7 @@ MathJax.Extension.tex2jax = {
} else {
math.nodeValue += next.nodeValue;
}
} else{
} else {
var ignore = this.ignoreTags[next.nodeName.toLowerCase()];
math.nodeValue += (ignore == null ? " " : ignore);
}