欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

CKEditor中加入syntaxhighlighter代码高亮插件

程序员文章站 2022-03-07 08:13:17
从官网 下载ckeditor,我下载的是ckeditor 3.3.1 。ckeditor与原来的fckeditor有太大的不同了,作为开发人员,在做自己的博客的时候总是需要...

从官网 下载ckeditor,我下载的是ckeditor 3.3.1 。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"的图片(附件中上传了一个code的jpg图片,大家可以直接使用)。

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 ="js/syntaxhighlighter/styles/shcore.css" /> 
<link type = "text/css" rel = "stylesheet" href ="js/syntaxhighlighter/styles/shthemedefault.css" /> 
<script type = "text/javascript" src = "js/syntaxhighlighter/scripts/shcore.js" > </script> 
<script type = "text/javascript" src = "js/syntaxhighlighter/scripts/shbrushes.js" ></script> 

这四个文件在syntaxhighlighter的下载包里都有,最后,还在页面增加这段js:

<script type= "text/javascript" > 
syntaxhighlighter.config.clipboardswf= 'js/syntaxhighlighter/scripts/clipboard.swf' ; 
syntaxhighlighter.all(); 
</script>

ckeditor的"插入代码"插件就ok了。

提示个小bug

修改之后insertcode图标的title为空。我把你的代码中的"label: a.lang.insertcode.toolbar"(共2处)改为"label: a.lang.insertcode"。解决!