From 9704c6e3003f8d2556a5d87bf9ec588c9331f9ca Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 12 Jan 2025 17:39:25 +0800 Subject: [PATCH] :art: --- 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 62fbec553..ac9df125a 100644 --- a/app/src/protyle/render/av/cell.ts +++ b/app/src/protyle/render/av/cell.ts @@ -791,7 +791,7 @@ export const renderCell = (cellValue: IAVCellValue, rowIndex = 0) => { } else if (cellValue.type === "block") { // 不可使用换行 https://github.com/siyuan-note/siyuan/issues/11365 if (cellValue?.isDetached) { - text = `${cellValue.block.content || ""}${window.siyuan.languages.more}`; + 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}`; }