{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

百度编辑器代码高亮代码

百度编辑器代码如何高亮

在需要高亮的页面尾部加入高亮代码就可以了

<script src="ueditor/third-party/SyntaxHighlighter/shCore.js" type="text/javascript"></script>        
<link rel="stylesheet" href="ueditor/third-party/SyntaxHighlighter/shCoreDefault.css">    
<script type="text/javascript">SyntaxHighlighter.all();</script>

百度编辑器代码自动换行

找到高亮代码显示的css文件  ueditor/third-party/SyntaxHighlighter/shCoreDefault.css文件

查找

.syntaxhighlighter{width:100%!important;margin:.3em 0 .3em 0!important;position:relative!important;overflow:auto!important;background-color:#f5f5f5!important;border:1px solid #ccc!important;

替换成

.syntaxhighlighter{width:100%!important;margin:.3em 0 .3em 0!important;position:relative!important;overflow:auto!important;background-color:#f5f5f5!important;border:1px solid #ccc!important;word-break:break-all;

主要是加了word-break:break-all;这个CSS自动换行样式属性。

百度编辑器代码行间距

找到高亮代码显示的css文件  ueditor/third-party/SyntaxHighlighter/shCoreDefault.css文件

查找

line-height:1.1em!important;

替换成

line-height:25px!important;

具体行间距自己设置


资源均来自第三方,谨慎下载,前往第三方网站下载


爱资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:百度编辑器代码高亮代码
喜欢 ()分享 (0)