CKEditor 插入代码插件( 代码高亮插件)

  CKEditor与本来的FCKeditor有太大的差异了,作为开拓人员,在做本身的博客的时候老是需要贴代码的,只好给它先做一个插入代码的插件了。高亮代码用的是"SyntaxHighlighter"。

  1、在"ckeditor\plugins\"目次下新建一个"insertcode"目次,然后在"insertcode"目次下新建一个"plugin.js",输入以下代码:

CKEDITOR.plugins.add('insertcode', {
requires: ['dialog'],
init: function(a){
var b = a.addCommand('insertcode', new CKEDITOR.dialogCommand('insertcode'));
a.ui.addButton('insertcode', {
label: a.lang.insertcode.toolbar,
command: 'insertcode',
icon: this.path + 'images/code.jpg'
});
CKEDITOR.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');
}
});

  2、增加"images"目次,放入一个"code.jpg"的图片,虽然图片可以从google找一个,16*16巨细的就好了。

  3、增加"dialogs"目次,新建一个"insertcode.js",输入如下代码:

CKEDITOR.dialog.add('insertcode', function(editor){
var escape = function(value){
return value;
};
return {
title: 'Insert Code Dialog',
resizable: CKEDITOR.DIALOG_RESIZE_BOTH,
minWidth: 720,
minHeight: 480,
contents: [{
id: 'cb',
name: 'cb',
label: 'cb',
title: 'cb',
elements: [{
type: 'select',
label: 'Language',
id: 'lang',
required: true,
'default': 'csharp',
items: [['ActionScript3', 'as3'], ['Bash/shell', 'bash'], ['C#', 'csharp'], ['C++', 'cpp'], ['CSS', 'css'], ['Delphi', 'delphi'], ['Diff', 'diff'], ['Groovy', 'groovy'], ['Html', 'xhtml'], ['JavaScript', 'js'], ['Java', 'java'], ['JavaFX', 'jfx'], ['Perl', 'perl'], ['PHP', 'php'], ['Plain Text', 'plain'], ['PowerShell', 'ps'], ['Python', 'py'], ['Ruby', 'rails'], ['Scala', 'scala'], ['SQL', 'sql'], ['Visual Basic', 'vb'], ['XML', 'xml']]
}, {
type: 'textarea',
style: 'width:700px;height:420px',
label: 'Code',
id: 'code',
rows: 31,
'default': ''
}]
}],
onOk: function(){
code = this.getValueOf('cb', 'code');
lang = this.getValueOf('cb', 'lang');
html = '' + escape(code) + '';
editor.insertHtml("<pre class=\"brush:" + lang + ";\">" + html + "</pre>");
},
onLoad: function(){
}
};
});

  我是用"syntaxhighlighter"来做代码高亮的,假如你不喜欢它也可以换成其它的。

  4、接下来就是把插件插手到CKEditor里了,我是直接修改CKEditor插件的焦点文件的,因为我是把“插入代码”成果做为一个编辑器须要的成果来利用的。

  找到ckeditor目次下的"ckeditor.js",这里的代码是颠末压缩的,我们用CKEditor本来的about插件做参考。查找"about",找到"fullPage:false,height:200,plugins:'about,basicstyles",我们在"about"后头增加",insertcode",这里就酿成"plugins:'about,insertcode,basicstyles"。

   继承查找"about",找到

j.add('about',{init:function(l){var m=l.addCommand('about',new a.dialogCommand('about'));m.modes={wysiwyg:1,source:1};m.canUndo=false;l.ui.addButton('About',{label:l.lang.about.title,command:'about'});a.dialog.add('about',this.path+'dialogs/about.js');}});

  我们在这个分号后头增加

j.add('insertcode', {requires: ['dialog'],init: function(l){l.addCommand('insertcode', new a.dialogCommand('insertcode'));l.ui.addButton('insertcode', {label: l.lang.insertcode.toolbar,command: 'insertcode',icon: this.path + 'images/code.jpg'});a.dialog.add('insertcode', this.path + 'dialogs/insertcode.js');}});

  接下来查找"i.toolbar_Basic=",这就是CKEditor默认的东西栏了,我们在这里加上",insertcode",你可以加在你想要的位置。好比我的"['Maximize','ShowBlocks','-','insertcode']"。

  5、进入"ckeditor\lang",别离在"en.js","zh.js","zh-cn.js"中增加",insertcode:'Insert Code'",",insertcode:'插入代碼'",",insertcode:'插入代码'"。

  6、对CKEditor的修改已经OK了,尚有最后一步就是在你需要高亮代码的页面引用:

<link type="text/css" rel="stylesheet" href=http://down.chinaz.com/"http:/blog.moozi.net/wp-includes/js/syntaxhighlighter/styles/shCore.css"/>
<link type="text/css" rel="stylesheet" href=http://down.chinaz.com/"http:/blog.moozi.net/wp-includes/js/syntaxhighlighter/styles/shThemeDefault.css"/>
<script type="text/javascript" src=http://down.chinaz.com/"http:/blog.moozi.net/wp-includes/js/syntaxhighlighter/shCore.js"></script>
<script type="text/javascript" src=http://down.chinaz.com/"http:/blog.moozi.net/wp-includes/js/syntaxhighlighter/shBrushes.js"></script>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/10505.html