Переглянути джерело

: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);
         });
     }
 };