diff --git a/packages/client/src/tiptap/core/extensions/paste.ts b/packages/client/src/tiptap/core/extensions/paste.ts index aded0191..2109bb26 100644 --- a/packages/client/src/tiptap/core/extensions/paste.ts +++ b/packages/client/src/tiptap/core/extensions/paste.ts @@ -111,7 +111,7 @@ export const Paste = Extension.create({ } // FIXME:各家 office 套件标准不一样,是否需要做成用户自行选择粘贴 html 或者 图片? - if (html?.length) { + if (html?.includes('urn:schemas-microsoft-com:office') || html?.includes('')) { const doc = htmlToProsemirror({ schema: editor.schema, html,