@kukejs/kkeditor-mathml
基于 ckeditor5 的数学公式插件
目前只实现了复制 word 内容解析成 svg 在编辑器中显示,解析过程 omml -》mathml -》svg
本地调试
// 执行一个脚本
lerna exec --scope @kukejs/kkeditor-mathml -- yarn run start
或
// 执行 npm 命令
lerna run --scope @kukejs/kkeditor-mathml start
使用方式
// 引入数学公式解析
import { MathML, MathmlParser } from '@kukejs/kkeditor-mathml'
// 创建编辑器在 plugins 中引入插件
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ MathML, MathmlParser, ... ],
toolbar: [ ... ],