-
Notifications
You must be signed in to change notification settings - Fork 783
/
_config.yml
180 lines (148 loc) · 3.35 KB
/
_config.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
name: 'Marlin Firmware'
logo: '/assets/images/logo/marlin/small.png'
description: 'Printing the planet, one layer at a time.'
baseurl: ''
url: 'https://marlinfw.org'
js: '/assets/javascript/'
pull_img: '/assets/images/docs/development/pull_images/'
# Not used anymore
enforce_ssl: marlinfw.org
version: '1.0.0'
environment: development
destination: ./_site
twitter:
username: MarlinFirmware
social:
name: Marlin Firmware
links:
- https://fosstodon.org/@marlinfirmware
- https://x.com/marlinfirmware
- https://bsky.app/profile/marlinfirmware.bsky.social
- https://www.facebook.com/groups/1049718498464482/
- http://forums.reprap.org/list.php?415
- https://discord.com/servers/marlin-firmware-461605380783472640
repository:
main: 'https://github.com/MarlinFirmware/Marlin'
doc: 'https://github.com/MarlinFirmware/MarlinDocumentation'
config: 'https://github.com/MarlinFirmware/Configurations'
analytics:
id: 'UA-76230130-1'
domain: 'marlinfw.org'
markdown: kramdown
highlighter: rouge
timezone: 'America/Chicago'
kramdown:
input: GFM
syntax_highlighter: rouge
jekyll_tidy:
compress_html: true
# exclude: ["index.html"]
# ignore_env: development
sass:
style: compressed
collections:
basics:
output: true
permalink: /docs/:collection/:path:output_ext
configuration:
output: true
title: Configuration
permalink: /docs/:collection/:path:output_ext
setting:
output: true
title: Settings
permalink: /docs/:collection/:path:output_ext
development:
output: true
title: Development
permalink: /docs/:collection/:path:output_ext
features:
output: true
title: Features
permalink: /docs/:collection/:path:output_ext
gcode:
output: true
title: G-code
permalink: /docs/:collection/:path:output_ext
hardware:
output: true
title: Hardware
permalink: /docs/:collection/:path:output_ext
meta:
output: true
permalink: /:collection/:path/
tools:
output: true
permalink: /:collection/:path:output_ext
exclude:
- _config.yml
- Gemfile
- LICENSE
- public
- script
- vendor
plugins:
- jekyll-mentions
- jekyll-seo-tag
- jekyll-avatar
- jekyll-bootstrap-sass
- jekyll-tidy
defaults:
- # All types
scope:
path: '' # all files
values:
layout: default
author: MarlinFirmware
category: [ default ]
show:
navbar: true
footer: true
breadcrumbs: false
- # Basics collection
scope:
type: basics
values:
layout: docs
category: [ Basics ]
- # Configuration collection
scope:
type: configuration
values:
layout: docs
category: [ configuration ]
- # Settings collection
scope:
type: setting
values:
layout: setting
category: [ setting ]
- # Development collection
scope:
type: development
values:
layout: docs
category: [ development ]
- # Features collection
scope:
type: features
values:
layout: docs
category: [ features ]
- # G-code collection
scope:
type: gcode
values:
layout: gcode
category: [ gcode ]
- # Hardware collection
scope:
type: hardware
values:
layout: docs
category: [ hardware ]
- # Meta collection
scope:
type: meta
values:
category: [ meta ]