This commit is contained in:
parent
e3d3e53172
commit
59b4323c4c
1 changed files with 6 additions and 3 deletions
|
@ -113,11 +113,14 @@ export const input = async (protyle: IProtyle, blockElement: HTMLElement, range:
|
|||
return;
|
||||
}
|
||||
// https://github.com/siyuan-note/siyuan/issues/9015
|
||||
if (type !== "NodeHeading" &&
|
||||
(editElement.innerHTML.startsWith("¥¥<wbr>") || editElement.innerHTML.startsWith("¥¥<wbr>") ||
|
||||
trimStartText.indexOf("\n¥¥<wbr>") > -1 || trimStartText.indexOf("\n¥¥<wbr>") > -1)) {
|
||||
if (type === "NodeParagraph" && (
|
||||
editElement.innerHTML.startsWith("¥¥<wbr>") || editElement.innerHTML.startsWith("¥¥<wbr>") ||
|
||||
// https://ld246.com/article/1730020516427
|
||||
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") {
|
||||
const response = await fetchSyncPost("/api/block/getRefText", {id: refElement.getAttribute("data-id")});
|
||||
|
|
Loading…
Add table
Reference in a new issue