This commit is contained in:
parent
12792471b3
commit
450a538201
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,6 @@ import {
|
|||
alignImgLeft,
|
||||
commonHotkey,
|
||||
downSelect,
|
||||
duplicateBlock,
|
||||
getStartEndElement,
|
||||
upSelect
|
||||
} from "./commonHotkey";
|
||||
|
@ -1242,7 +1241,8 @@ export const keydown = (protyle: IProtyle, editorElement: HTMLElement) => {
|
|||
const id = nodeElement.getAttribute("data-node-id");
|
||||
const html = nodeElement.outerHTML;
|
||||
const editElement = getContenteditableElement(nodeElement);
|
||||
editElement.innerHTML = "```" + window.siyuan.storage[Constants.LOCAL_CODELANG] + "\n" + editElement.textContent + "<wbr>\n```";
|
||||
// 需要 EscapeHTMLStr https://github.com/siyuan-note/siyuan/issues/11451
|
||||
editElement.innerHTML = "```" + window.siyuan.storage[Constants.LOCAL_CODELANG] + "\n" + Lute.EscapeHTMLStr(editElement.textContent) + "<wbr>\n```";
|
||||
const newHTML = protyle.lute.SpinBlockDOM(nodeElement.outerHTML);
|
||||
nodeElement.outerHTML = newHTML;
|
||||
const newNodeElement = protyle.wysiwyg.element.querySelector(`[data-node-id="${id}"]`);
|
||||
|
|
Loading…
Add table
Reference in a new issue