From face4a1c907260a18129aea1863ac14f66cf37a3 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 23 Feb 2026 23:17:42 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/17051 --- app/src/protyle/util/table.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/protyle/util/table.ts b/app/src/protyle/util/table.ts index 3ed120d6c..83cb863da 100644 --- a/app/src/protyle/util/table.ts +++ b/app/src/protyle/util/table.ts @@ -190,9 +190,9 @@ export const insertColumn = (protyle: IProtyle, nodeElement: Element, cellElemen const tag = colCellElement.tagName.toLowerCase(); let html = ""; if (colCellElement === cellElement) { - html = `<${tag}> ` + `<${tag}> `.repeat(count - 1); + html = `<${tag}>` + `<${tag}>`.repeat(count - 1); } else { - html = `<${tag}> `.repeat(count); + html = `<${tag}>`.repeat(count); } colCellElement.insertAdjacentHTML(type, html); }