From 2ac80f3cb13d9827a3a4ac0310ce452989426f26 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 12 Jan 2025 17:41:23 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E4=B8=BB=E9=94=AE=E8=BD=AC=E4=B9=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/protyle/render/av/cell.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/render/av/cell.ts b/app/src/protyle/render/av/cell.ts index ac9df125a..47a8ead5e 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -793,7 +793,7 @@ export const renderCell = (cellValue: IAVCellValue, rowIndex = 0) => { if (cellValue?.isDetached) { text = `${Lute.EscapeHTMLStr(cellValue.block.content || "")}${window.siyuan.languages.more}`; } else { - text = `${cellValue.block.icon ? `${unicode2Emoji(cellValue.block.icon)}` : ""}${cellValue.block.content}${window.siyuan.languages.update}`; + text = `${cellValue.block.icon ? `${unicode2Emoji(cellValue.block.icon)}` : ""}${Lute.EscapeHTMLStr(cellValue.block.content)}${window.siyuan.languages.update}`; } } else if (cellValue.type === "number") { text = `${cellValue?.number.formattedContent || cellValue?.number.content || ""}`;