Skip to content

ckeditor的qq表情插件,使用ckeditor制作微信公众号回复内容编辑器的配置

Notifications You must be signed in to change notification settings

chaegumi/ckeditor-qq-smiley

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

ckeditor-qq-smiley

ckeditor的qq表情插件

Add-on Installation Instructions

If you want to add the plugin manually, you will need to:

Extract the downloaded plugin .zip into the plugins folder of your CKEditor installation. Example:

http://example.com/ckeditor/plugins/qqsmiley

Enable the plugin by using the extraPlugins configuration setting. Example:

CKEDITOR.editorConfig = function(config){
	config.extraPlugins = 'qqsmiley';
};	

使用ckeditor做微信公众号回复消息内容编辑器的配置如下:

var editor = CKEDITOR.replace('textcontent', {
    height:250,
    allowedContent: true,
    ignoreEmptyParagraph : false,
    enterMode : CKEDITOR.ENTER_BR,
    pasteFromWordRemoveFontStyles:false,
    pasteFromWordRemoveStyles: false,
    extraPlugins : 'autogrow,qqsmiley',
    toolbarGroups: [
	{"name":"insert","groups":["insert"]},
	{"name":"links"}
    ],
    removeButtons: 'PageBreak,Table,Smiley,SpecialChar,Image,HorizontalRule,Iframe,Flash'
});

About

ckeditor的qq表情插件,使用ckeditor制作微信公众号回复内容编辑器的配置

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published