其他分享
首页 > 其他分享> > html 如何转化为一个 delta 模型

html 如何转化为一个 delta 模型

作者:互联网


利用 Quil Detail处理,核心原理在内存中模拟 Quill.js 的使用

const { convertHtmlToDelta } = require('node-quill-converter');

let htmlString = '<p>hello, <strong>world</strong></p>';
let delta = convertHtmlToDelta(htmlString);

console.log(JSON.stringify(delta); // {"ops":[{"insert":"hello, "},{"insert":"world","attributes":{"bold":true}}]}

标签:insert,htmlString,convertHtmlToDelta,模型,html,let,delta,world
来源: https://blog.51cto.com/u_15166492/2714334