1
2
3
4
5
6
7
8
9
10
11
12
| import { SlateElement } from '@wangeditor-next/editor'
|
| function processRecordToHtml(_elem: SlateElement, _childrenHtml: string): string {
| return `<span data-w-e-type="process-record" data-w-e-is-void data-w-e-is-inline>流程记录</span>`
| }
|
| const conf = {
| type: 'process-record',
| elemToHtml: processRecordToHtml
| }
|
| export default conf
|
|