@kukejs/kkeditor-paste-from-office
修改 ckediotr5 的解析功能 支持解析 wps
修改 ckeditor5-paste-from-office
插件的部分功能,解决 wps 在拷贝粘贴时文本内容被重写成空字符的问题
本地调试
// 执行一个脚本
lerna exec --scope @kukejs/kkeditor-paste-from-office -- yarn run start
或
// 执行 npm 命令
lerna run --scope @kukejs/kkeditor-paste-from-office start
使用方式
// 引入数学公式解析
import { PasteFromOffice } from '@kukejs/kkeditor-paste-from-office'
// 创建编辑器在 plugins 中引入插件
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ PasteFromOffice, ... ],
toolbar: [ ... ],