-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhugo.toml
69 lines (55 loc) · 1.36 KB
/
hugo.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
baseURL = "https://docs.bfportal.gg/"
languageCode = "en-us"
themesDir = "hugo/themes"
theme = "hugo-geekdoc"
title = "Portal Documentation"
titleCaseStyle = "Go"
# Geekdoc required configuration
pygmentsUseClasses = true
pygmentsCodeFences = true
disablePathToLower = true
[outputs]
home = ["HTML", "RSS"]
[markup]
[markup.goldmark.renderer]
# Needed for mermaid shortcode
unsafe = true
[markup.tableOfContents]
startLevel = 1
endLevel = 9
[taxonomies]
tag = "tags"
[[module.mounts]]
source = "hugo/archetypes"
target = "archetypes"
[[module.mounts]]
source = "hugo/assets"
target = "assets"
[[module.mounts]]
source = "hugo/data"
target = "data"
[[module.mounts]]
source = "hugo/i18n"
target = "i18n"
[[module.mounts]]
source = "hugo/layouts"
target = "layouts"
[[module.mounts]]
source = "hugo/static"
target = "static"
[[module.mounts]]
source = "docs/"
target = "./content/"
excludeFiles = ["portal_blocks/**"]
[[module.mounts]]
source = "docs/portal_blocks"
target = "./content/portal-builder/rules-editor/block-reference"
[params]
geekdocLogo= "/images/bf_portal_logo_bc.png"
geekdocFilePath= "content"
geekdocRepo = "https://github.com/battlefield-portal-community/portal-docs"
geekdocEditPath = "edit/main/docs"
geekdocNextPrev = true
geekdocSearchShowParent = true
geekdocMenuBundle = true
geekdocAnchor = true