瀏覽代碼

:art: https://github.com/siyuan-note/siyuan/issues/8513

Vanessa 2 年之前
父節點
當前提交
182eb26b47
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      app/src/protyle/util/paste.ts

+ 1 - 0
app/src/protyle/util/paste.ts

@@ -54,6 +54,7 @@ export const pasteAsPlainText = async (protyle: IProtyle) => {
         // Inline-level elements support pasted as plain text https://github.com/siyuan-note/siyuan/issues/8010
         navigator.clipboard.readText().then(textPlain => {
             insertHTML(protyle.lute.BlockDOM2EscapeMarkerContent(protyle.lute.Md2BlockDOM(textPlain)), protyle);
+            filterClipboardHint(protyle, textPlain);
         });
     }
 };