diff --git a/app/src/protyle/wysiwyg/enter.ts b/app/src/protyle/wysiwyg/enter.ts index 7e6ccf187..37ca528a7 100644 --- a/app/src/protyle/wysiwyg/enter.ts +++ b/app/src/protyle/wysiwyg/enter.ts @@ -236,7 +236,7 @@ export const enter = (blockElement: HTMLElement, range: Range, protyle: IProtyle // ```test` 不处理,正常渲染为段落块 } else if (blockElement.classList.contains("p")) { // https://github.com/siyuan-note/siyuan/issues/6953 const oldHTML = blockElement.outerHTML; - let replaceInnerHTML = editableElement.innerHTML.replace(/^(~|·|`){3,}/g, "```").replace(/\n(~|·|`){3,}/g, "\n```").trim(); + let replaceInnerHTML = editableElement.innerHTML.replace(/\n(~|·|`){3,}/g, "\n```").trim().replace(/^(~|·|`){3,}/g, "```"); if (!replaceInnerHTML.endsWith("\n```")) { replaceInnerHTML += "\n```"; }