如何向tinyMCE添加自定义项目符号?

时间:2014-01-31 16:39:21

标签: javascript css tinymce tinymce-4

我想在tinyMCE的子弹下拉列表中添加一些额外的选项,这可能吗?

我想添加►类型的子弹和不同的颜色选项。 (红色,蓝色等......)

1 个答案:

答案 0 :(得分:3)

是。在您的tinyMCE配置中,您需要指定:

style_formats: [
    {
         title: 'Custom Bullet',
             selector: 'ul', 
             classes: 'custom1'
         }
],

从那里,您需要在CSS中指定样式:

.custom1 { list-style-image: url('custom1.png'); }

有关详细信息,请参阅此处:https://www.tinymce.com/docs/configure/content-formatting/#style_formats