Merge pull request 'fix: another bug in KaTeX macro expander' (#9795) from naskya/calckey:fix/katex-macro-2 into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9795
This commit is contained in:
Kainoa Kanter 2023-04-01 16:28:48 +00:00
commit d3ccf27af7

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);