问题
I want to add a few extra option to the bullets dropdown on tinyMCE, is that possible?
I want to add ► type of bullet and different color options. (red, blue, etc...)
回答1:
Yes. In your tinyMCE config, you need to specify:
style_formats: [
{
title: 'Custom Bullet',
selector: 'ul',
classes: 'custom1'
}
],
From there, you need to specify the styling in the CSS:
.custom1 { list-style-image: url('custom1.png'); }
See this for more info: https://www.tinymce.com/docs/configure/content-formatting/#style_formats
来源:https://stackoverflow.com/questions/21485294/how-can-i-add-custom-bullets-to-tinymce