程序员的博客,贴代码是必不可少的,语法着色可以让代码看起来更养眼,下面是 5 个 WordPress 的插件,用来对代码进行语法高亮显示。
1) CodeColorer
该插件允许在写文章时插入代码,支持多种着色风格,支持多种编程语言。
使用方法:
2) WP-Syntax
该插件使用 GeSHi 进行语法着色,使用方法如下:
<pre lang="LANGUAGE" line="1"> Code
</pre>
// PHP with No Line number
<pre lang="php">
// PHP Code goies Here
</pre>
// Java with line number
<pre lang="java" line="1">
// JAVA code goes here.
</pre>
// PHP with No Line number
<pre lang="php">
// PHP Code goies Here
</pre>
// Java with line number
<pre lang="java" line="1">
// JAVA code goes here.
</pre>
Download
3) WP-Code
使用方法
4) Crayon Syntax Highlighter
该插件支持多语言,不同风格、字体,可对 URL 地址进行高亮
使用方法:
[crayon lang="lang"] your code [/crayon]
// where lang will be your language
// highlight from URL
[crayon url="http://example.com/codeblock.txt" /]
// where lang will be your language
// highlight from URL
[crayon url="http://example.com/codeblock.txt" /]
5) WP Code Highlight
WP Code Highlight 提供简洁的语法高亮,兼容 W3C 验证
使用方法:
<pre> Your Code Block Here
</pre>