fix(protyle): https://github.com/siyuan-note/siyuan/issues/13590 (#13596)
This commit is contained in:
parent
914c765938
commit
e3d3e53172
1 changed files with 4 additions and 5 deletions
|
@ -113,11 +113,10 @@ export const input = async (protyle: IProtyle, blockElement: HTMLElement, range:
|
|||
return;
|
||||
}
|
||||
// https://github.com/siyuan-note/siyuan/issues/9015
|
||||
if (trimStartText === "¥¥<wbr>" || trimStartText === "¥¥<wbr>") {
|
||||
editElement.innerHTML = "$$<wbr>";
|
||||
} else if (trimStartText.indexOf("\n¥¥<wbr>") > -1 || trimStartText.indexOf("\n¥¥<wbr>") > -1) {
|
||||
// https://ld246.com/article/1730020516427
|
||||
editElement.innerHTML = trimStartText.replace("\n¥¥<wbr>", "\n$$$$<wbr>").replace("\n¥¥<wbr>", "\n$$$$<wbr>");
|
||||
if (type !== "NodeHeading" &&
|
||||
(editElement.innerHTML.startsWith("¥¥<wbr>") || editElement.innerHTML.startsWith("¥¥<wbr>") ||
|
||||
trimStartText.indexOf("\n¥¥<wbr>") > -1 || trimStartText.indexOf("\n¥¥<wbr>") > -1)) {
|
||||
editElement.innerHTML = editElement.innerHTML.replace("¥¥<wbr>", "$$$$<wbr>").replace("¥¥<wbr>", "$$$$<wbr>");
|
||||
}
|
||||
const refElement = hasClosestByAttribute(range.startContainer, "data-type", "block-ref");
|
||||
if (refElement && refElement.getAttribute("data-subtype") === "d") {
|
||||
|
|
Loading…
Add table
Reference in a new issue