个人觉得CKEditor中block的功能非常有用,所以希望使block功能默认就是enabled.效果如下: 于是查询了下设置方法。如下:
config.startupOutlineBlocks = true;
如果在config中设置可以这样写:
CKEDITOR.replace( 'content-editor', { //省去其他配置 startupOutlineBlocks:true, //设置magic line magicline_everywhere:true, magicline_color:'#FE6700', })
如果希望在所有引用ckeditor的地方默认都配置了block显示功能,那就要在系统级别去修改config.js了。
1. Edit /themes/third_party/expresso/ckeditor4.1/config.js 2. Add the following inside the CKEDITOR.editorConfig = function( config ) config.startupOutlineBlocks = true;
同时magicline功能也是个不错的特性。所以也配上后效果如下。