-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathhugo.yml
More file actions
189 lines (169 loc) · 4.64 KB
/
hugo.yml
File metadata and controls
189 lines (169 loc) · 4.64 KB
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
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"
GitHubRepo: "https://github.com/trimble-oss/devguide"
images:
- https://devguide.trimble.com/img/preview.png
disableKinds: ["taxonomy", "RSS"]
pygmentsUseClasses: true
outputs:
home: ["HTML", "JSON"]
privacy:
googleAnalytics:
respectDoNotTrack: true
youtube:
privacyEnhanced: true
menu:
development_practices:
- name: Code Documentation
url: "/development-practices/code-documentation/"
- name: Code Review
url: "/development-practices/code-review/"
- 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 Documentation
url: /innersource/publishing-documentation/
weight: 9
governance:
- name: Governance
url: /governance/
module:
mounts:
- source: node_modules/@trimble-oss/modus-docs-hugo-theme/assets/
target: assets
# The main theme CSS and JavaScript
- source: node_modules/@trimble-oss/modus-docs-hugo-theme/layouts/
target: layouts
# The main theme templates
- source: layouts/
target: layouts
- source: node_modules/@trimble-oss/modus-docs-hugo-theme/static/
target: static
# Includes Trimble favicon and JS for theme toggle and search
- source: static
target: static
- source: node_modules/@trimble-oss/modus-bootstrap/dist/css/modus-bootstrap.min.css
target: static/css/modus-bootstrap.min.css
- source: node_modules/@trimble-oss/modus-bootstrap/dist/css/modus-bootstrap.min.css.map
target: static/css/modus-bootstrap.min.css.map
- source: node_modules/bootstrap/dist/js/bootstrap.bundle.min.js
target: static/js/bootstrap.bundle.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
keepQuotes: true
keepWhitespace: true
js:
keepVarNames: true
xml:
keepWhitespace: true