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 ? `` : ""}${cellValue.block.content}${window.siyuan.languages.update}`;
+ text = `${cellValue.block.icon ? `` : ""}${Lute.EscapeHTMLStr(cellValue.block.content)}${window.siyuan.languages.update}`;
}
} else if (cellValue.type === "number") {
text = `${cellValue?.number.formattedContent || cellValue?.number.content || ""}`;