-
-
Notifications
You must be signed in to change notification settings - Fork 202
/
hugo.toml
76 lines (65 loc) · 1.97 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
70
71
72
73
74
75
76
languageCode = "en-us"
baseurl = "https://docuapi.netlify.app/"
title = "DocuAPI Example Site"
disableKinds = ["taxonomy"]
# Code higlighting settings
pygmentsCodefences = true
pygmentsCodeFencesGuesSsyntax = false
pygmentsOptions = ""
pygmentsStyle = "monokai"
pygmentsUseClasses = false
defaultContentLanguage = "en"
[markup]
[markup.goldmark]
[markup.goldmark.parser]
autoHeadingIDType = "github-ascii"
[markup.goldmark.renderer]
unsafe = true
[module]
[module.hugoVersion]
[[module.imports]]
# This is replaced in go.mod to point to the directory above.
path = "github.com/bep/docuapi/v2"
[params]
search = true
maxMenuDepth = 3 # (optional) available options are: 1, 2, or 3 (default: 2)
# Configure the language example tabs.
[[params.language_tabs]]
key = "go"
name = "Go"
[[params.language_tabs]]
key = "shell"
name = "Shell"
[[params.language_tabs]]
key = "ruby"
name = "Ruby"
[[params.language_tabs]]
key = "python"
name = "Python"
[[params.language_tabs]]
key = "javascript"
name = "Javascript"
#Languages
[languages]
[languages.en]
languageName = "English"
weight = 2
title = "DocuAPI Example Site"
[languages.en.params]
# Left sidebar footer items. Use HTMl or Markdown.
toc_footers = [
"<a href='#'>Sign Up for a Developer Key</a>",
"Documentation Powered by [DocuAPI](https://github.com/bep/docuapi)",
"Hugo Theme by [bep](https://github.com/bep)",
]
[languages.nn]
languageName = "Nynorsk"
weight = 1
title = "DocuAPI-døme"
[languages.nn.params]
# Left sidebar footer items. Use HTMl or Markdown.
toc_footers = [
"<a href='#'>Registrer deg for ein utviklarnøkkel</a>",
"Dokumentasjonen er driven av [DocuAPI](https://github.com/bep/docuapi)",
"Hugo Theme av [bep](https://github.com/bep)",
]