ref: effaf6c2c97c90619f12293f8c474e2738d6d2f6
parent: e35a69216e7212890febdd201c1929f1a01b5916
author: Robert Basic <[email protected]>
date: Mon Mar 28 06:21:46 EDT 2016
docs: Document GitHub flavoured code fences Fixes #1259
--- a/docs/content/extras/highlighting.md
+++ b/docs/content/extras/highlighting.md
@@ -86,6 +86,22 @@
The keywords are the same you would using with Pygments from the command line, see the [Pygments doc](http://pygments.org/docs/) for more info.
+### Code fences
+
+It is also possible to add syntax highlighting with GitHub flavoured code fences. To enable this, set the `PygmentsCodeFences` to `true` in Hugo's configuration file.
+
+````
+``` html
+<section id="main">
+ <div>
+ <h1 id="title">{{ .Title }}</h1>
+ {{ range .Data.Pages }}
+ {{ .Render "summary"}}
+ {{ end }}
+ </div>
+</section>
+```
+````
### Disclaimers