This extension fixes format of text copied from MS Office and pasted into the Tiptap editor.
npm i --save @intevation/tiptap-extension-office-paste
- Fixes lists
- Convertes mso lists into actual html lists
- Corrects list levels
- Parse list type and start
- Removes bookmark tags
- Removes
<o:p>
tags - Converts
mso
styles - Removes black text color style
import OfficePaste from "@intevation/tiptap-extension-office-paste";
const editor = Editor({
extensions: [
StarterKit,
OfficePaste
]
});
The MIT License (MIT). Please see License File for more information.