rfid/themes/hugo-whisper-theme/exampleSite/content/docs/configure/index.md
2021-10-01 14:32:43 +02:00

945 B

title date draft weight summary
Configuration 2019-02-11T19:30:08+10:00 false 4 Syntax highlighting and menus can be configured via `config.toml`.

Syntax Highlighting

Whisper uses the in-built code highlighting that ships with hugo. https://gohugo.io/content-management/syntax-highlighting/

You can insert code snippets in any markdown file by using standard code fences syntax ie:

```
insert code here
```

You can specify the langauge by adding a declaration after the backticks

```javascript
insert code here
```

Pygments Options

The following code highlighting options are configured in the config.toml

pygmentsCodeFences = true
pygmentsCodefencesGuessSyntax = true
pygmentsUseClasses = true

Main menu

Configure the main menu by editing the config.toml

[[menu.main]]
name = "Home"
url = "/"
weight = 1

[[menu.main]]
name = "Docs"
url = "/docs/"
weight = 2