fix(markup): raise KaTeX MAX_CHARS limit to 10000 (#39387)

This commit is contained in:
Copilot
2026-09-22 15:12:56 +00:00
committed by GitHub
parent 7637b1b816
commit 8164130349
+1 -1
View File
@@ -21,7 +21,7 @@ export async function initMarkupCodeMath(elMarkup: HTMLElement): Promise<void> {
import('katex/dist/katex.css'),
]);
const MAX_CHARS = 1000;
const MAX_CHARS = 10000;
const MAX_SIZE = 25;
const MAX_EXPAND = 1000;