prismjs 是一款輕量、可擴展的代碼語法高亮庫,使用現代化的 Web 標準構建,使用 Prismjs 能夠快速爲網站添加代碼高亮功能,支持超過113中編程語言,還支持多種插件,是簡潔、高效的代碼高亮解決方案。科技愛好者博客就是使用了Prism.js 實現漂亮的代碼語法高亮功能,本文教你如何在wordpress上快速使用Prismjs實現代碼高亮。javascript
在Prismjs網站下載頁面下載須要的JS和CSS文件,下載頁面:php
http://prismjs.com/download.htmlcss
在下載頁面,須要選擇高亮模板、支持的編程語言、插件,選擇完畢後下載生成的JS和CSS文件。html
注:(以Wordpress爲例)我把文件上傳到了網站的wp-content目錄,而後在頁面中引用。java
找到wordpress 使用的主題目錄,分別修改header.php和footer.php文件python
打開header.php文件,在標籤前添加CSS引用。修改後就是這樣nginx
<html> <head> ... <link href="themes/prism.css" rel="stylesheet" /> </head>
打開footer.php文件,在標籤前添加JS引用,修改後以下:git
<body> ... <script src="prism.js"></script> </body>
完成上述步驟後,就能夠在wordpress文章中引用了。sql
在發表文章時將代碼塊用<code><pre>標籤包圍起來,就能夠實現代碼高亮功能了!docker
例1以下:
<pre><code class="language-php"> <?php echo "Hello World!"; ?> </code>
</pre>
例2以下:
``` csharp using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace inTestCar.Web { public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } } } ```
在<pre>裏添加 line-numbers 類就能夠開啓代碼快的行號,固然前提是你必須下載Line Numbers插件。添加方式以下:
<pre class="line-numbers"><code class="language-css">
或
``` css
代碼
```
Markup - markup CSS - css C-like - clike JavaScript - javascript ABAP - abap ActionScript - actionscript Apache Configuration - apacheconf APL - apl AppleScript - applescript AsciiDoc - asciidoc ASP.NET (C#) - aspnet AutoIt - autoit AutoHotkey - autohotkey Bash - bash BASIC - basic Batch - batch Bison - bison Brainfuck - brainfuck Bro - bro C - c C# - csharp C++ - cpp CoffeeScript - coffeescript Crystal - crystal CSS Extras - css-extras D - d Dart - dart Diff - diff Docker - docker Eiffel - eiffel Elixir - elixir Erlang - erlang F# - fsharp Fortran - fortran Gherkin - gherkin Git - git GLSL - glsl Go - go Groovy - groovy Haml - haml Handlebars - handlebars Haskell - haskell Haxe - haxe HTTP - http Icon - icon Inform 7 - inform7 Ini - ini J - j Jade - jade Java - java JSON - json Julia - julia Keyman - keyman Kotlin - kotlin LaTeX - latex Less - less LOLCODE - lolcode Lua - lua Makefile - makefile Markdown - markdown MATLAB - matlab MEL - mel Mizar - mizar Monkey - monkey NASM - nasm nginx - nginx Nim - nim Nix - nix NSIS - nsis Objective-C - objectivec OCaml - ocaml Oz - oz PARI/GP - parigp Parser - parser Pascal - pascal Perl - perl PHP - php PHP Extras - php-extras PowerShell - powershell Processing - processing Prolog - prolog Protocol Buffers - protobuf Puppet - puppet Pure - pure Python - python Q - q Qore - qore R - r React JSX - jsx reST (reStructuredText) - rest Rip - rip Roboconf - roboconf Ruby - ruby Rust - rust SAS - sas Sass (Sass) - sass Sass (Scss) - scss Scala - scala Scheme - scheme Smalltalk - smalltalk Smarty - smarty SQL - sql Stylus - stylus Swift - swift Tcl - tcl Textile - textile Twig - twig TypeScript - typescript Verilog - verilog VHDL - vhdl vim - vim Wiki markup - wiki YAML - yaml
本文來源 :http://www.3gjn.com/growth/117.html