Merge pull request 'fix: a bug in the KaTeX macro expander' (#9785) from naskya/calckey:fix/katex-macro into develop

Reviewed-on: https://codeberg.org/calckey/calckey/pulls/9785
This commit is contained in:
Kainoa Kanter 2023-03-30 21:50:03 +00:00
commit 73190395ec
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ function expandKaTeXMacroOnce(src: string, macros: { [name: string]: KaTeXMacro
} }
if (nextOpenBracketPos === endPos) if (nextOpenBracketPos === endPos)
return [fallback, false]; // there is no open bracket continue; // there is no open bracket
macroNameCandidate += src[nextOpenBracketPos]; macroNameCandidate += src[nextOpenBracketPos];