-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhugo.yml
196 lines (182 loc) · 4.75 KB
/
hugo.yml
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
baseurl: https://devguide.trimble.com/
title: Developer Guidelines
languageCode: en-US
locale: en-US
enableInlineShortcodes: true
enableGitInfo: true
googleAnalytics: "G-JSL7J81XML"
params:
title: Developer Guidelines
copyrightHolder: "Trimble Inc."
author: "Trimble"
images:
- https://devguide.trimble.com/img/preview.png
disableKinds: ["taxonomy", "RSS"]
pygmentsUseClasses: true
outputs:
home: ["HTML", "JSON"]
privacy:
googleAnalytics:
anonymizeIP: true
respectDoNotTrack: true
twitter:
enableDNT: true
youtube:
privacyEnhanced: true
menu:
main:
- name: Development Practices
url: "/development-practices/"
weight: 1
- name: Code Style
url: "/code-style/"
weight: 2
- name: InnerSource
url: "/innersource/introduction/"
weight: 3
- name: Governance
url: "/governance/"
weight: 4
development:
- name: Code Documentation
url: "/development-practices/code-documentation/"
- name: Code Review
url: "/development-practices/code-review/"
- name: InnerSource
url: "/innersource/introduction/"
- name: Managing Code Complexity
url: "/development-practices/managing-code-complexity/"
- name: Open Source Usage
url: "/development-practices/open-source-usage/"
- name: Packaging and Distribution
url: "/development-practices/packaging-and-distribution/"
- name: Unit Testing
url: "/development-practices/unit-testing/"
- name: VCS Standards - Git
url: "/development-practices/vcs-standards-git/"
- name: Versioning
url: "/development-practices/versioning/"
code:
- name: C
url: /code-style/c/
weight: 1
- name: C#
url: /code-style/c-sharp/
weight: 2
- name: C++
url: /code-style/c-plus-plus/
weight: 3
- name: CSS
url: /code-style/css/
weight: 4
- name: Go
url: /code-style/go/
weight: 5
- name: HTML
url: /code-style/html/
weight: 6
- name: Java
url: /code-style/java/
weight: 7
- name: JavaScript
url: /code-style/javascript/
weight: 8
- name: Kotlin
url: /code-style/kotlin/
weight: 9
- name: Objective C
url: /code-style/objective-c/
weight: 10
- name: Python
url: /code-style/python/
weight: 11
- name: Swift
url: /code-style/swift/
weight: 12
- name: TypeScript
url: /code-style/typescript/
weight: 13
innersource:
- name: Introduction
url: /innersource/introduction/
weight: 1
- name: Implementation Checklist
url: /innersource/implementation-checklist/
weight: 2
- name: InnerSource Roles
url: /innersource/innersource-roles/
weight: 3
- name: Repository Configuration
url: /innersource/repository-configuration/
weight: 4
- name: Contribution Agreements
url: /innersource/contribution-agreements/
weight: 5
- name: Project Documentation
url: /innersource/project-documentation/
weight: 6
- name: Project Communication
url: /innersource/project-communication/
weight: 7
- name: Project Tracking
url: /innersource/project-tracking/
weight: 8
- name: Publishing Your Documentation
url: /innersource/publish-documentation/
weight: 9
governance:
- name: Governance
url: /governance/
module:
mounts:
- source: static
target: static
- source: assets/static/favicon.ico
target: static/favicon.ico
- source: assets/static/robots.txt
target: static/robots.txt
- source: node_modules/jquery/dist/jquery.min.js
target: static/js/jquery.min.js
- source: node_modules/jquery/dist/jquery.min.map
target: static/js/jquery.min.map
- source: node_modules/bootstrap/dist/js/bootstrap.min.js
target: static/js/bootstrap.min.js
- source: node_modules/bootstrap/dist/js/bootstrap.min.js.map
target: static/js/bootstrap.min.js.map
- source: node_modules/clipboard/dist/clipboard.min.js
target: static/js/clipboard.min.js
markup:
goldmark:
extensions:
definitionList: true
footnote: true
linkify: true
strikethrough: true
table: true
taskList: true
typographer: true
parser:
attribute: true
autoHeadingID: true
renderer:
unsafe: true
highlight:
noClasses: false
codeFences: true
style: monokai
tableOfContents:
endLevel: 3
ordered: false
startLevel: 2
# https://gohugo.io/getting-started/configuration/#configure-minify
minify:
minifyOutput: true
tdewolff:
html:
keepDefaultAttrVals: false
keepEndTags: false
keepWhitespace: true
js:
keepVarNames: true
xml:
keepWhitespace: true