From 97cde7f17ff34dda996839b070e5bcd435816c80 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 19 Jul 2022 22:22:59 +0800 Subject: [PATCH] :bug: fix https://github.com/siyuan-note/siyuan/issues/5463 --- app/src/protyle/util/insertHTML.ts | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/app/src/protyle/util/insertHTML.ts b/app/src/protyle/util/insertHTML.ts index 66b6b69cf..22bc78db6 100644 --- a/app/src/protyle/util/insertHTML.ts +++ b/app/src/protyle/util/insertHTML.ts @@ -47,6 +47,8 @@ export const insertHTML = (html: string, protyle: IProtyle, isBlock = false) => let id = blockElement.getAttribute("data-node-id"); range.insertNode(document.createElement("wbr")); let oldHTML = blockElement.outerHTML; + const undoOperation: IOperation[] = []; + const doOperation: IOperation[] = []; if (range.toString() !== "") { const inlineMathElement = hasClosestByAttribute(range.commonAncestorContainer, "data-type", "inline-math"); if (inlineMathElement) { @@ -59,6 +61,16 @@ export const insertHTML = (html: string, protyle: IProtyle, isBlock = false) => range.deleteContents(); } range.insertNode(document.createElement("wbr")); + undoOperation.push({ + action: "update", + id, + data: oldHTML + }) + doOperation.push({ + action: "update", + id, + data: blockElement.outerHTML + }) } const tempElement = document.createElement("template"); tempElement.innerHTML = html; @@ -114,8 +126,6 @@ export const insertHTML = (html: string, protyle: IProtyle, isBlock = false) => } } } - const undoOperation: IOperation[] = []; - const doOperation: IOperation[] = []; const cursorLiElement = hasClosestByClassName(blockElement, "li"); // 列表项不能单独进行粘贴 https://ld246.com/article/1628681120576/comment/1628681209731#comments if (tempElement.content.children[0]?.getAttribute("data-type") === "NodeListItem") {