转载

Bootstrap 代码高亮

这款 Bootstrap 代码高亮插件的名字叫做 google-code-prettify

使用该插件之前的效果:

Bootstrap 代码高亮

使用插件之后的效果:

Bootstrap 代码高亮

接下来说步骤:

(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”>
正文到此结束
Loading...