更换编辑器

This commit is contained in:
2020-04-03 11:36:07 +08:00
parent 9dafceb2eb
commit 743d429bb8
591 changed files with 20918 additions and 99838 deletions
@@ -0,0 +1,12 @@
/**
* 引用插件
* @author yangjian
*/
KindEditor.plugin('quote', function(K) {
var self = this;
var name = 'quote';
self.clickToolbar(name, function() {
self.insertHtml('<blockquote class="ke-quote"><p>这里输入引用内容...</p></blockquote><br/>');
self.focus();
});
});