哪个插件允许在 CKEditor 5 中添加带有按钮外观的 link?

Which plugin allows to add the link with button appearance in CKEditor 5?

遗憾的是,“CKEditor link 按钮”或“ckeditor 按钮外观 link”等搜索请求没有实际结果。但我不认为CKEditor 不能添加link as below orange button 因为这是客户的基本需求。

你可以使用 decorator。这将是您传递给 ClassicEditor.create

的配置对象的一部分
link: {
    decorators: {
        buttonLink: {
            mode: 'manual',
            label: 'Style as button',
            defaultValue: false,
            attributes: {
                class: 'link-button'
            }
        }
    }
}

界面看起来像

那么您只需要为 a.link-button 制作一个 css 样式即可。