Make sure mml2jax doesn't process the assistive MathML.
This commit is contained in:
parent
82e0daf2c6
commit
1dff53daa8
|
@ -99,8 +99,8 @@ MathJax.Extension.mml2jax = {
|
|||
}
|
||||
for (var i = 0, m = math.length; i < m; i++) {
|
||||
var parent = math[i].parentNode;
|
||||
if (parent && parent.className !== preview && !math[i].prefix === !namespace)
|
||||
{array.push(math[i])}
|
||||
if (parent && parent.className !== preview &&
|
||||
!parent.isMathJax && !math[i].prefix === !namespace) array.push(math[i]);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user