Fix a bug in macro expander

This commit is contained in:
naskya 2023-04-01 21:18:55 +09:00
parent 0e8fe41aaa
commit 671f6f93a0
No known key found for this signature in database
GPG key ID: 164DFF24E2D40139

View file

@ -264,6 +264,8 @@ function expandKaTeXMacroOnce(
}
}
if (!macros.hasOwnProperty(macroName)) return [fallback, false];
const numArgs: number = macros[macroName].args;
const openBracket: string = macroName.slice(-1);