tiptap: improve paste

This commit is contained in:
fantasticit 2022-07-30 14:23:23 +08:00
parent 2eb88074db
commit 6b163d0cb8
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ export const Paste = Extension.create<IPasteOptions>({
}
// FIXME各家 office 套件标准不一样,是否需要做成用户自行选择粘贴 html 或者 图片?
if (html?.length) {
if (html?.includes('urn:schemas-microsoft-com:office') || html?.includes('</table>')) {
const doc = htmlToProsemirror({
schema: editor.schema,
html,