bootstrap设计站点中加入代码高亮插件
版权声明:本文为博主原创文章。未经博主同意不得转载。 https://blog.csdn.net/QianShouYuZhiBo/article/details/26636979
这款插件的名字叫做google-code-prettify
使用该插件之前的效果:
使用插件之后的效果:
接下来说步骤:
(1)下载两个文件
http://codecloud.sinaapp.com/google-code-prettify/prettify.css
http://codecloud.sinaapp.com/google-code-prettify/prettify.js
(2)在head中引入这两个文件
<link href="google-code-prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="google-code-prettify/prettify.js"></script>
(3)在body加上onload=”prettyPrint()
<body onload="prettyPrint()">...</body>
(4)把代码放进<pre>...</pre>
或者 <code>...</code>
就能够实行代码高亮了。你也能够指定一种语言,class=”prettyprint
Lang-html”,在lang- 后加入下面不论什么一种语言。
“bash”, “c”, “cc”, “cpp”, “cs”, “csh”, “cyc”, “cv”, “htm”, “html”, ”java”, “js”, “m”, “mxml”, “perl”, “pl”, “pm”, “py”, “rb”, “sh”, ”xhtml”, “xml”, “xsl”
(5)打开行号
你能够使用linenums打开行号
<pre class=”prettyprint linenums Lang-html”>
posted on 2019-04-04 10:37 xfgnongmin 阅读(549) 评论(0) 编辑 收藏 举报