فهرست منبع

:art: fix https://github.com/siyuan-note/siyuan/issues/5548

Vanessa 2 سال پیش
والد
کامیت
987cb07a4f
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      app/src/protyle/wysiwyg/input.ts

+ 4 - 2
app/src/protyle/wysiwyg/input.ts

@@ -96,8 +96,10 @@ export const input = async (protyle: IProtyle, blockElement: HTMLElement, range:
         }
     } else if (!blockElement.classList.contains("code-block") && (["[]", "[ ]", "[x]", "[X]", "【】", "【 】", "【x】", "【X】"].includes(editElement.textContent))) {
         const isDone = editElement.textContent.indexOf("x") > -1 || editElement.textContent.indexOf("X") > -1;
-        if (blockElement.parentElement.classList.contains("li")) {
-            if (blockElement.parentElement.parentElement.childElementCount === 2 && blockElement.parentElement.childElementCount === 3) {
+        if (blockElement.parentElement.classList.contains("li") &&
+            blockElement.parentElement.childElementCount === 3  // https://ld246.com/article/1659315815506
+        ) {
+            if (blockElement.parentElement.parentElement.childElementCount === 2) {
                 html = `<div data-subtype="t" data-node-id="${blockElement.parentElement.parentElement.getAttribute("data-node-id")}" data-type="NodeList" class="list"><div data-marker="*" data-subtype="t" data-node-id="${blockElement.parentElement.getAttribute("data-node-id")}" data-type="NodeListItem" class="li${isDone ? " protyle-task--done" : ""}"><div class="protyle-action protyle-action--task"><svg><use xlink:href="#icon${isDone ? "C" : "Unc"}heck"></use></svg></div><div data-node-id="${id}" data-type="NodeParagraph" class="p"><div contenteditable="true" spellcheck="false"><wbr></div><div class="protyle-attr" contenteditable="false"></div></div><div class="protyle-attr" contenteditable="false"></div></div><div class="protyle-attr" contenteditable="false"></div></div>`;
                 id = blockElement.parentElement.parentElement.getAttribute("data-node-id");
                 blockElement = blockElement.parentElement.parentElement;