首页 > 教程 >

为kindsoft编辑器替换SyntaxHighlighter代码高亮,整合

2023-02-19教程围观

简介DeDeCMS本身的标记其不好用,更换为KindEditor后确实很不错了,但是KindEditor编辑器的代码高亮确实不怎么好看,也不怎么使用,虽然很简洁,但是功能上还是显得匮乏一些,所以就动手改了改,现在分享出来!首先,下载本站提供的DeDeCMS一键傻瓜式安装KindEditor。详细说明请查看该页面。我们选择SyntaxHighlighter作为代码高亮插件,修改/include/kind

  

DeDeCMS本身的标记其不好用,更换为KindEditor后确实很不错了,但是KindEditor编辑器的代码高亮确实不怎么好看,也不怎么使用,虽然很简洁,但是功能上还是显得匮乏一些,所以就动手改了改,现在分享出来!

首先,下载本站提供的DeDeCMS一键傻瓜式安装KindEditor。详细说明请查看该页面。

我们选择SyntaxHighlighter作为代码高亮插件,修改/include/kindeditor/plugins/code/code.js

找到:

 

html = '<pre class="prettyprint' + cls + '">n' + K.escape(code) + '</pre> ';
替换为:


html = '<pre class="prettyprint linenums lang-' + cls + '">n' + K.escape(code) + '</pre> ';
这样是为了将prettify的类名换为SyntaxHighlighter插件需要的类名,


保存并上传覆盖原来的code.js

然后将我提供的附件上传至/include/kindeditor/plugins/code/目录,当然,你也可以传到别的目录,但是在下一步记得路径要正确!

附件:SyntaxHighlighter

好了,现在就需要修改前台模板

在前台模板引入附件中的文件:

<  type="text/ " src="/include/kindeditor/plugins/code/syntaxhighlighter.js" charset="UTF-8"></ ><  type="text/css" rel="stylesheet" href="/include/kindeditor/plugins/code/shCore.css"/><  type="text/css" rel="stylesheet" href="/include/kindeditor/plugins/code/shThemeDefault.css"/>


并记得在页面最末端加入以下代码:

<  type="text/ ">    SyntaxHighlighter.config.clipboardSwf = '/include/kindeditor/plugins/code/clipboard.swf';SyntaxHighlighter.config.strings={expandSource:'展开代码',viewSource:'查看代码',copyToClipboard:'复制代码',copyToClipboardConfirmation:'复制代码成功',print:'打印',help:'?',alert:'站长图库提示:nn', noBrush: '不能找到刷子: ',brushNotHtml : '刷子没有配置html- 选项',aboutDialog: '<div></div>'};    SyntaxHighlighter.all();</ >

 

好了,到这里就结束了,发篇文章看看效果吧!


还是上张图吧!

dedecms kindsoft编辑器代码高亮

下载链接:网站源码/小程序源码/网站模板下载

Tags: 代码 编辑器 替换 高亮 kindsoft