浏览代码

:art: fix https://github.com/siyuan-note/siyuan/issues/7341

Vanessa 2 年之前
父节点
当前提交
5ae02f36bc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/src/protyle/wysiwyg/enter.ts

+ 1 - 1
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 += "<wbr>\n```";
             }