CK Editor Title Issue

Hi,

does anyone works with CK editor Addon?

I have a link with a title in it, but the ck editor removes it:

 Constants.Toolbar[] toolbar = new Constants.Toolbar[]{Constants.Toolbar.heading, Constants.Toolbar.fontFamily, Constants.Toolbar.fontSize, Constants.Toolbar.fontColor, Constants.Toolbar.bold, Constants.Toolbar.italic, Constants.Toolbar.underline, Constants.Toolbar.bulletedList, Constants.Toolbar.horizontalLine, Constants.Toolbar.link, Constants.Toolbar.htmlEmbed, Constants.Toolbar.sourceEditing};
        Config config = new Config();
        config.setEditorToolBar(toolbar);
        config.setUILanguage(Constants.Language.de);
        classicEditor = new VaadinCKEditorBuilder().with(builder -> {
            builder.editorData = product.getDescriptionLongDe() == null ? "---" : product.getDescriptionLongDe();
            builder.editorType = Constants.EditorType.CLASSIC;
            builder.theme = Constants.ThemeType.LIGHT;
            builder.config = config;
        }).createVaadinCKEditor();

The value is

<a href="https:xxx" title="Was ist das?">E-Automat</a>
but in editor i see
<a href="https:xxx">E-Automat</a>

i already tried adding generalHtml but it still eliminates the title

This is just HTML attribute filtering configuration rule in CKEditor? Like indicated in this old stackoverflow question: https://stackoverflow.com/questions/20671519/how-to-add-title-attribute-at-ckeditor-images

Unfortunately the API has changed completely since and I’m not familiar with that (or the add-on API) myself, but I think it should be added to the config.

Tried everything i could. But did not get it done, it always removed the “title” in ahref :confused: