-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.toml
196 lines (168 loc) · 6.64 KB
/
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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# This config.toml is used with Hugo <= 0.110.0
baseURL = "/"
# enableRobotsTXT = true
enableInlineShortcodes = true
# Will give values to .Lastmod etc.
enableGitInfo = true
# Language settings
contentDir = "content/en"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
# Useful when translating.
enableMissingTranslationPlaceholders = true
# Google Analytics configuration
# https://gohugo.io/templates/internal/#configure-google-analytics
# https://www.docsy.dev/docs/adding-content/feedback/#adding-analytics
googleAnalytics = 'G-KYT3X41389'
# taxonomy
disableKinds = ["taxonomy", "taxonomyTerm"]
# Highlighting config (copied from the docsy example site, tag v0.7.1)
pygmentsCodeFences = true
pygmentsUseClasses = false
# Use the new Chroma Go highlighter in Hugo.
pygmentsUseClassic = false
#pygmentsOptions = "linenos=table"
# See https://help.farbox.com/pygments.html
pygmentsStyle = "dracula"
[markup]
[markup.goldmark]
[markup.goldmark.parser.attribute]
block = true
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
# See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
style = "dracula"
# these are defaults https://gohugo.io/getting-started/configuration-markup/#highlight
anchorLineNos = false
codeFences = true
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
tabWidth = 4
guessSyntax = false
# Set guessSyntax to true if you want your chosen highlight style used for code blocks without a specified language
[markup.tableOfContents]
endLevel = 4 # page TOC render ##, ###, #### headings
# Configure how URLs look like per section.
[permalinks]
blog = "/:section/:year/:month/:day/:slug/"
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
[blackfriday]
plainIDAnchors = true
hrefTargetBlank = true
angledQuotes = false
latexDashes = true
# Image processing configuration.
[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"
# Language configuration
[languages]
[languages.en]
#comment out title as it messes with the new logo
title = "Armory Docs"
description = "Armory Continuous Deployment-as-a-Service: Declarative Deployment to Kubernetes. Built for developers. CD-as-a-Service dynamically orchestrates your deployment across all your clusters."
languageName ="English"
# Weight used for sorting.
[[menu.main]]
name = "Request a Demo"
weight = 1
url = "https://www.armory.io/cdaas-demo-scheduler/"
[[menu.main]]
name = "Armory.io"
weight = 2
url = "https://www.armory.io/"
[[menu.main]]
name = "Blog"
weight = 3
url = "https://www.armory.io/blog/"
# Everything below this are Site Params
[params]
copyright = "Armory Inc."
privacy_policy = "https://www.armory.io/privacy-policy/"
terms_of_service = "https://www.armory.io/terms-of-service/"
terms_and_conditions = "https://www.armory.io/terms-and-conditions/"
# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
github_repo = "https://github.com/armory/docs-cdaas/"
github_branch = "master"
# Enable Lunr.js offline search
offlineSearch = true
offlineSearchMaxResults = 50
offlineSearchSummaryLength = 200
# User interface configuration
[params.ui]
# Enable to show the side bar menu in its compact state.
sidebar_menu_compact = true
# set a desired menu depth to always be visible when sidebar_menu_compact = true; 1 is root-level; 2 means root-level and the top-level sub-categories are always displayed
# ul_show = 1
# create a foldable menu that lets users expand/collapse by toggling arrow icons; this enables users to bypass the section landing page
sidebar_menu_foldable= true
sidebar_cache_limit = 20
# Set to true to disable breadcrumb navigation.
breadcrumb_disable = false
# Do not show taxonomy breadcrumbs /tags/ pages (when user clicks on a tag, user goes to /tags/ page)
taxonomy_breadcrumb_disable = false
# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
sidebar_search_disable = false
# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar
navbar_logo = true
# Set to true to disable the About link in the site footer
footer_about_disable = false
# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
# add "hide_feedback: true" to the page's front matter.
# https://www.docsy.dev/docs/adding-content/feedback/#how-is-this-data-useful
# https://www.docsy.dev/docs/adding-content/feedback/#access-the-feedback-data
[params.ui.feedback]
enable = true
# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
yes = 'Thank you for letting us know!'
no = 'Sorry to hear that. Please <a href="https://github.com/armory/docs-cdaas/issues/new">tell us how we can improve</a>.'
# Adds a reading time to the top of each doc.
# If you want this feature, but occasionally need to remove the Reading time from a single page,
# add "hide_readingtime: true" to the page's front matter
[params.ui.readingtime]
enable = false
# Enable Mermaid diagrams
# With hugo version 0.93 or higher, support of Mermaid diagrams is automatically enabled as soon as you use a mermaid code block on your page.
[params.mermaid]
enable = true
theme = "forest"
[params.links]
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
[[params.links.user]]
name = "Email Armory"
url = "mailto:[email protected]"
icon = "fa fa-envelope"
desc = "Discussion and help from your fellow users"
[[params.links.user]]
name ="Twitter"
url = "https://twitter.com/cloudarmory"
icon = "fab fa-twitter"
desc = "Follow us on Twitter to get the latest news!"
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/armory/docs-cdaas/"
icon = "fab fa-github"
desc = "CD-as-a-Service docs repository"
# hugo module configuration (copied from the docsy example site, tag v0.7.1)
[module]
# uncomment line below for temporary local development of module
# replacements = "github.com/google/docsy -> ../../docsy"
[module.hugoVersion]
extended = true
min = "0.110.0"
[[module.imports]]
path = "github.com/google/docsy"
disable = false
[[module.imports]]
path = "github.com/google/docsy/dependencies"
disable = false