|
@@ -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```";
|
|
|
}
|