Trim spaces from content-mathml elements (helps with issue #989.

This commit is contained in:
Davide P. Cervone 2016-08-05 14:29:31 -04:00
parent 4779c91b5f
commit 5d4a84345e

View File

@ -190,6 +190,7 @@ MathJax.Extension["MathML/content-mathml"] = (function(HUB) {
*/
appendToken: function(parentNode,name,textContent) {
var element = CToP.createElement(name);
textContent = textContent.replace(/^\s+/,"").replace(/\s+$/,"");
if (name === 'mn' && textContent.substr(0,1) === "-") {
//
// use <mrow><mo>&#x2212;</mo><mn>n</mn></mrow> instead of <mn>-n</mn>