在 richtextfx 中附加带有样式的文本的问题

problem with append text with style in richtextfx

我想使用 append(String text, String sytleClass) 方法在 StyleClassedTextArea 中附加带有样式的特定文本 richtextfx 但出现问题

StyleClassTextArea textarea=new StyleClassedTextArea();
textarea.appendText("no-style");
textarea.append("with-style","error");
textarea.appendText("no-style");

我认为输出会是(对于我使用粗体文本的样式)

no-style with-style no-style

但实际输出是

no-style with-style no style

它将样式应用于后来添加的所有文本
那么,解决这个问题的方法是什么?

我在 rihtextfx github 页面
发布了这个 有关详细信息,请参阅此问题 richtextfx issue-938