mirror of
https://github.com/gohugoio/hugo.git
synced 2025-03-19 22:53:53 +00:00
parent
e35a69216e
commit
effaf6c2c9
1 changed files with 16 additions and 0 deletions
|
@ -86,6 +86,22 @@ Supported keywords: `style`, `encoding`, `noclasses`, `hl_lines`, `linenos`. No
|
||||||
|
|
||||||
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.
|
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
|
### Disclaimers
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue