I coded a custom format that extends Inline. I applied the format by using the following code:
this.quill?.formatText(index, length,{
"action" : true,
"comment" : text,
});
It works well when there is no bold or italic tags. However if it contains bold or italic, this format breaks into three parts.... I would like to have exactly one tag element over different formats consistantly. How should I do it?
Currently it breaks into three parts... not sure why the attribute been writter on strong tag
