We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65944ab commit a87369eCopy full SHA for a87369e
ts/input/tex/ParseUtil.ts
@@ -557,6 +557,7 @@ export const ParseUtil = {
557
// Replace \U{...} with specified character
558
const c = String.fromCodePoint(parseInt(arg[1] || arg[2], 16));
559
text = text.substring(0, i - 2) + c + text.substring(i + arg[0].length);
560
+ i = i - 2 + c.length;;
561
}
562
563
0 commit comments