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

Backport #39387 by @Copilot

Fix #39386
This commit is contained in:
Giteabot
2026-09-22 17:55:03 +02:00
committed by GitHub
parent 0b5c721971
commit 0dc8bf8848
+1 -1
View File
@@ -20,7 +20,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;