/**
* @description elem to html
* @author wangfupeng
*/
import { SlateElement } from '@wangeditor/editor'
import { FormulaElement } from './custom-types'
// 生成 html 的函数
function formulaToHtml(elem: SlateElement, childrenHtml: string): string {
const { value = '' } = elem as FormulaElement
return ``
}
// 配置
const conf = {
type: 'formula', // 节点 type ,重要!!!
elemToHtml: formulaToHtml,
}
export default conf