generated from google/docsy-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
47 lines (41 loc) · 930 Bytes
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"
[module]
[module.hugoVersion]
min = "0.110.0"
[params]
# Add your theme-specific parameters here
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
noClasses = false
[outputs]
home = ["HTML", "RSS", "JSON", "MP3"]
[[outputs.MP3]]
content_type = "audio/mpeg"
media_types = ["mp3"]
[menu]
[[menu.main]]
identifier = "audio"
name = "Audio"
url = "/audio/"
weight = 3 # Adjust the weight to control the position in the menu
[menu]
[[menu.main]]
name = "Docsy & Hugo Website"
url = "/path/to/page/"
weight = 10
[menu]
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 10
[[menu.main]]
identifier = "coding-projects"
name = "Coding Projects"
url = "/coding-projects/"
weight = 20