CKEditor4.6.2开发者站点定制版

1.CKEditor4.6版发布

2016年11月CKEditor4.6版官方发布了,其中新的缺省的皮肤样式Moono-Lisa较以前确实有较大的提升,让人眼前一亮。在其官网(http://www.ckeditor.com)上定制的几款编辑器也很实用和简洁。

其中Article Editor,Document Editor和Developer Site Editor(Feathers频道)都很吸引我。CKEditor官网上并没有提供上述版本的下载,需要手工定制,我定制了一款开发者站点编辑器并把过程和大家分享。

2.CKEditor4.6.2开发者站点定制版定制过程

  1. 在CKEditor下载频道(download)点击在线定制(Customize | Online Builder)
  2. 在定制页面,第一步,选择基本版(Basic)
  3. 第二步,在可选插件(Available plugins)选择框中查找Blockquote(块引用),并将其加入到左侧已选插件(Selected plugins)选择框中。按上面方法,依次加入Code Snippet,Image,Table,Mathematical Formulas,Format共六个插件后,选择喜欢的皮肤。
  4. 第三步,增加简体中文(Chinese Simplified)到编辑器语言中。
  5. 第四步,选择同意确认选择框,点击下载完成定制过程。

3.CKEditor4.6.2开发者站点定制版配置

将下载的ZIP包解压并部署到服务器上,修改config.js文件,在config.removeButtons 增加About项,并增加配置项config.format_tags = 'p;h1;h2;h3;pre',即只保留格式选择中的普通,标题1,标题2,标题3和已编排格式五项。

config.js文件内容如下:

/**
 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.md or http://ckeditor.com/license
 */

CKEDITOR.editorConfig = function( config ) {
	// Define changes to default configuration here.
	// For complete reference see:
	// http://docs.ckeditor.com/#!/api/CKEDITOR.config

	// The toolbar groups arrangement, optimized for a single toolbar row.
	config.toolbarGroups = [
		{ name: 'document',	   groups: [ 'mode', 'document', 'doctools' ] },
		{ name: 'clipboard',   groups: [ 'clipboard', 'undo' ] },
		{ name: 'editing',     groups: [ 'find', 'selection', 'spellchecker' ] },
		{ name: 'forms' },
		{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
		{ name: 'paragraph',   groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ] },
		{ name: 'links' },
		{ name: 'insert' },
		{ name: 'styles' },
		{ name: 'colors' },
		{ name: 'tools' },
		{ name: 'others' },
		{ name: 'about' }
	];

	// The default plugins included in the basic setup define some buttons that
	// are not needed in a basic editor. They are removed here.
	config.removeButtons = 'Cut,Copy,Paste,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript,About';

	// Dialog windows are also simplified.
	config.removeDialogTabs = 'link:advanced';
    config.format_tags = 'p;h1;h2;h3;pre';
};

4.测试及定制版下载

演示地址:index.html

下载地址:ck_4dev.zip

原文地址:www.42du.cn

转载于:https://my.oschina.net/u/3247733/blog/852438

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值