This commit is contained in:
parent
9107b6dba8
commit
5ae02f36bc
1 changed files with 1 additions and 1 deletions
|
@ -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```";
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue