如何使用 Quill 文本编辑器在元素中添加内联样式?

How to add inline style in element with Quill Text Editor?

Jsfiddle

使用dangerouslyPasteHTML插入内容时,没有插入内联样式?

例如,margin-right 不适用于 p 元素。

如何在 p 元素上设置内联样式?

引用 from the docs:

dangerouslyPasteHTML

Inserts content represented by HTML snippet into editor at a given index. The snippet is interpreted by Clipboard matchers, which may not produce the exactly input HTML.

Quill 是新一代所见即所得文本编辑器,在设计上可以防止任意 html 插入,这通常会使以前的编辑器出现故障且不可靠。

当您使用 dangerouslyPasteHTML 时,Quill 正在尝试构建有意义的内容表示,并将去除任何不适合该表示的内容(内联样式是的一部分)。

如果您想了解更多相关信息,这里有一个关于这个确切问题的有趣对话:https://github.com/quilljs/quill/issues/1896