DedeCms 5.7实现代码高亮

  无论建博客网站照旧CMS范例网站,许多都需要代码高亮,织梦CMS是海内较量优秀的CMS建站系统之一,不像Wordpress一样有大把大把的插件可用,我用的是最新的dedeCMS 5.7,在网上搜了很长时间资料,多半写的是CKEditor和SyntaxHighlighter整合的文章,可是dedecms将ckeditor做了集成,和一般的只针对付ckeditor对config.js修改差异。所以只能本身琢磨修改了,现将要领写出供站长伴侣们参考:

一、首先去SyntaxHighlighter官方网站下载,网址:,发起下载2.1版本,3.0版本的貌似不支持自动换行,这里利用的是2.1.382版本。将下载的文件解压在syntaxHighlight文件夹里,去除内里无用的文件,只留下scripts和styles文件夹。

二、新建dialogs文件夹,在内里新建一个名为syntaxhighlight.js的文件,因代码量过大,不宜贴出,请直接下载syntaxhighlight.js

假如想修改代码区域的样式请在以下代码处修改<table>标签里的样式。

onOk : function() {

var i = this.getParentEditor();
var h = i.getSelection();
var g = h.getStartElement();
var l = g && g.getAscendant("pre", true);
var j = f();
this.commitContent(j);
var k = e(j);
var m = CKEDITOR.dom.element
.createFromHtml('<table style="border:1px solid #EAED9C;width:660px;"><tr><td><pre class="' + k + '">'
+ c(j.code) +"</pre></td></tr><table>");
if (l) {
m.insertBefore(l);
l.remove()
} else {
i.insertElement(m)
}
},

三、然后新建images文件夹,存放一个syntaxhighlight.gif图片文件,该图片文件在编辑器东西栏上显示,可以利用16*16像素的图片

四、新建lang文件夹,是语言包,内里有两个文件,一个是中文cn.js一个是英文en.js,代码内容如下:

 en.js代码如下:

CKEDITOR.plugins.setLang('syntaxhighlight', 'en',
{
syntaxhighlight:
{
title: 'Add or update a code snippet',
sourceTab: 'Source code',
langLbl: 'Select language',
advancedTab: 'Advanced',
hideGutter: 'Hide gutter',
hideGutterLbl: 'Hide gutter & line numbers.',
hideControls: 'Hide controls',
hideControlsLbl: 'Hide code controls at the top of the code block.',
collapse: 'Collapse',
collapseLbl: 'Collapse the code block by default. (controls need to be turned on)',
showColumns: 'Show columns',
showColumnsLbl: 'Show row columns in the first line.',
lineWrap: 'Disable line wrapping',
lineWrapLbl: 'Switch off line wrapping.',
lineCount: 'Default line count',
highlight: 'Highlight lines',
highlightLbl: 'Enter a comma seperated lines of lines you want to highlight, eg <em>3,10,15</em>.'
}
});

 cn.js代码如下:

CKEDITOR.plugins.setLang('syntaxhighlight', 'cn',
{
syntaxhighlight:
{
title: '添加或更新代码',
sourceTab: '代码',
langLbl: '选择语言',
advancedTab: '高级',
hideGutter: '埋没支解线',
hideGutterLbl: '埋没支解线和行号',
hideControls: '埋没东西栏',
hideControlsLbl: '埋没浮动东西栏',
collapse: '代码折叠',
collapseLbl: '默认折叠代码块 (需要启用东西栏)',
lineWrap: '自动换行',
lineWrapLbl: '封锁自动换行',
autoLinks: '自动链接',
autoLinksLbl: '不自动转换超链接',
lineCount: '起始行号',
highlight: '高亮行号',
highlightLbl: '输入以逗号脱离的行号, 如 <em>3,10,15</em>.'
}
});

五、新建plugin.js文件,该文件是ckeditor插件必需得文件,内里是对该插件的一些设置,代码如下:

CKEDITOR.plugins.add("syntaxhighlight", {
requires : [ "dialog" ],
lang : [ "cn" ],
init : function(a) {
var b = "syntaxhighlight";
var c = a.addCommand(b, new CKEDITOR.dialogCommand(b));
c.modes = {
wysiwyg : 1,
source : 1
};
c.canUndo = false;
a.ui.addButton("Code", {
label : a.lang.syntaxhighlight.title,
command : b,
icon : this.path + "images/syntaxhighlight.gif"
});
CKEDITOR.dialog.add(b, this.path + "dialogs/syntaxhighlight.js")
}
});

六、由于dedecms 5.7本身集成了一个dedepage插件,用来添加ckeditor自界说插件,在/include/ckeditor/dedepage文件夹下,打开plugin.js文件在最后头添加:

requires : ['syntaxhighlight'],个中syntaxhighlight为代码高亮插件的文件夹名,添加完之后的代码如下:

// Register a plugin named "dedepage".
(function()
{
CKEDITOR.plugins.add( 'dedepage',
{
init : function( editor )
{
// Register the command.
editor.addCommand( 'dedepage',{
exec : function( editor )
{
// Create the element that represents a print break.
// alert('dedepageCmd!');
editor.insertHtml("

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

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