diff --git a/src/functions/symbolsOrd.js b/src/functions/symbolsOrd.js index 0121f84f..db6ed0c5 100644 --- a/src/functions/symbolsOrd.js +++ b/src/functions/symbolsOrd.js @@ -47,8 +47,6 @@ defineFunctionBuilders({ if (group.mode === 'text') { node = new mathMLTree.MathNode("mtext", [text]); } else if (/[0-9]/.test(group.text)) { - // TODO(kevinb) merge adjacent nodes - // do it as a post processing step node = new mathMLTree.MathNode("mn", [text]); } else if (group.text === "\\prime") { node = new mathMLTree.MathNode("mo", [text]);