是否可以在 tinymce 工具栏中添加自定义文本?

Is it possible to add custom text in tinymce toolbar?

我想在 timymce 的工具栏中添加自定义文本。

示例图片:

这可能吗?我该如何实现?

如果您不想创建自定义按钮等。您可以使用 css 来完成。例如:

.mce-container-body::after {
    content: 'Custom Text Here';
    display: block;
    position: absolute;
    right: 8px;
    top: 5px;
    color: red;
    font-size: 20px;
}