From 2f582a4f9a88d822c37715a247c40b949debf476 Mon Sep 17 00:00:00 2001 From: SiriusXT <1160925501@qq.com> Date: Tue, 13 May 2025 19:09:16 +0800 Subject: [PATCH] Inline formulas do not have a .katex-display class --- apps/client/src/services/note_tooltip.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/services/note_tooltip.ts b/apps/client/src/services/note_tooltip.ts index 55982e644..80ec7caae 100644 --- a/apps/client/src/services/note_tooltip.ts +++ b/apps/client/src/services/note_tooltip.ts @@ -185,7 +185,7 @@ function renderFootnote($link: JQuery, url: string) { /* Handling in-line math formulas */ $footnoteContent.find('.ck-math-tex.ck-math-tex-inline.ck-widget').each(function () { - const $katex = $(this).find('.katex, .katex-display').first(); + const $katex = $(this).find('.katex').first(); if ($katex.length) { $(this).replaceWith($('').append($('').append($katex.clone()))); }