diff --git a/Parser.js b/Parser.js index 36701487b..c06e7174c 100644 --- a/Parser.js +++ b/Parser.js @@ -94,7 +94,7 @@ Parser.prototype.parseSuperscript = function(pos, mode) { } else if (sup.type === "'") { var pos = sup.position; return new ParseResult( - new ParseNode("textord", "\\prime"), sup.position, mode); + new ParseNode("textord", "\\prime", mode), sup.position, mode); } else { return null; }