添加自定义插件 ======================================================== 1. 添加"hello"插件 -------------------------------------------------------- 1) 添加plugins/hello/hello.js文件。 .. sourcecode:: js KindEditor.plugin('hello', function(K) { var editor = this, name = 'hello'; // 点击图标时执行 editor.clickToolbar(name, function() { editor.insertHtml('你好'); }); }); 2) 定义语言,在页面的