移除样式插件
移除所有 mark 标签插件
移除所有 block 样式
$ yarn add @aomao/plugin-removeformat
添加到引擎
import Engine, { EngineInterface } from '@aomao/engine';import Removeformat from '@aomao/plugin-removeformat';new Engine(...,{ plugins:[Removeformat] })
默认快捷键为 mod+\
//快捷键hotkey?: string | Array<string>;//使用配置new Engine(...,{config:{"redo":{//修改快捷键hotkey:"快捷键"}}})
//使用 command 执行插件engine.command.execute('removeformat');