我想用文字包装。 我试图通过扩展Inline类来实现。 即。
class MBlot extends Inline { }
MBlot.blotName = 'ql-important';
MBlot.tagName = 'span';
MBlot.className = 'important'
Quill.register(MBlot)
Quill.formatText(0, 5, 'ql-important', true);
然而,这没有效果。 顺便说一句:如果我将tagName更改为“someOtherTag”,它似乎可以正常工作
我该怎么办呢?