Fix typesetting of '
Not 100% sure this is the right fix but it appears to work. Test Plan: Typeset $x'$ in Perseus. Auditors: emily
This commit is contained in:
parent
16b79a2a42
commit
dc4857ac92
|
@ -94,7 +94,7 @@ Parser.prototype.parseSuperscript = function(pos, mode) {
|
||||||
} else if (sup.type === "'") {
|
} else if (sup.type === "'") {
|
||||||
var pos = sup.position;
|
var pos = sup.position;
|
||||||
return new ParseResult(
|
return new ParseResult(
|
||||||
new ParseNode("textord", "\\prime"), sup.position, mode);
|
new ParseNode("textord", "\\prime", mode), sup.position, mode);
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user