vowel 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/404.md +3 -0
- package/README.md +171 -25
- package/bin.js +209 -1
- package/config.js +20 -0
- package/docs-source/.votive.db +0 -0
- package/docs-source/blog/url-ui.md +1 -5
- package/docs-source/blog.md +5 -0
- package/docs-source/docs/items.md +1 -1
- package/docs-source/home.md +1 -1
- package/docs-source/output/about.html +1 -0
- package/docs-source/output/blog/url-ui.html +8 -0
- package/docs-source/output/blog.html +1 -0
- package/docs-source/output/default.css +1 -0
- package/docs-source/output/docs/deploy.html +34 -0
- package/docs-source/output/docs/file-structure.html +24 -0
- package/docs-source/output/docs/folder-settings.html +20 -0
- package/docs-source/output/docs/images.html +2 -0
- package/docs-source/output/docs/items.html +6 -0
- package/docs-source/output/docs/pages.html +101 -0
- package/docs-source/output/docs/styling.html +18 -0
- package/docs-source/output/docs/taxonomies.html +20 -0
- package/docs-source/output/docs.html +28 -0
- package/docs-source/output/features/cards.html +1 -0
- package/docs-source/output/features/editing.html +1 -0
- package/docs-source/output/features/emoji.html +1 -0
- package/docs-source/output/features/frontmatter.html +1 -0
- package/docs-source/output/features/lists.html +1 -0
- package/docs-source/output/features/navigation.html +1 -0
- package/docs-source/output/features/rich-previews.html +1 -0
- package/docs-source/output/features/robots.html +1 -0
- package/docs-source/output/features/rss.html +1 -0
- package/docs-source/output/features/sitemap.html +1 -0
- package/docs-source/output/features/speed.html +1 -0
- package/docs-source/output/features/static.html +1 -0
- package/docs-source/output/features/taxonomies.html +1 -0
- package/docs-source/output/features.html +1 -0
- package/docs-source/output/feed.xml +1 -0
- package/docs-source/output/index.html +21 -0
- package/docs-source/output/reset.css +1 -0
- package/docs-source/output/roadmap.html +87 -0
- package/docs-source/output/robots.txt +14 -0
- package/docs-source/output/sitemap.xml +16 -0
- package/docs-source/output/typography.css +1 -0
- package/docs-source/settings.md +1 -0
- package/getMetadata.js +1 -1
- package/index.js +5 -660
- package/package.json +17 -2
- package/plugins/fonts/index.js +26 -0
- package/plugins/icons/index.js +26 -0
- package/plugins/images/index.js +45 -0
- package/plugins/markdown/index.js +1097 -0
- package/plugins/robots/index.js +23 -0
- package/plugins/styles/index.js +69 -0
- package/plugins/vectors/index.js +38 -0
- package/plugins/xml/index.js +196 -0
- package/stylesheets/DefaultStyles.css +329 -263
- package/stylesheets/ResetStyles.css +119 -123
- package/stylesheets/TypographyStyles.css +259 -242
- package/docs-source/assets/styles.css +0 -51
- package/docs-source/blog/home.md +0 -5
- /package/docs-source/{$features → features}/cards.md +0 -0
- /package/docs-source/{$features → features}/editing.md +0 -0
- /package/docs-source/{$features → features}/emoji.md +0 -0
- /package/docs-source/{$features → features}/frontmatter.md +0 -0
- /package/docs-source/{$features → features}/lists.md +0 -0
- /package/docs-source/{$features → features}/navigation.md +0 -0
- /package/docs-source/{$features → features}/rich-previews.md +0 -0
- /package/docs-source/{$features → features}/robots.md +0 -0
- /package/docs-source/{$features → features}/rss.md +0 -0
- /package/docs-source/{$features → features}/sitemap.md +0 -0
- /package/docs-source/{$features → features}/speed.md +0 -0
- /package/docs-source/{$features → features}/static.md +0 -0
- /package/docs-source/{$features → features}/taxonomies.md +0 -0
|
@@ -1,254 +1,271 @@
|
|
|
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
|
-
h2 {
|
|
38
|
-
font-size: 2.6rem;
|
|
39
|
-
margin-top: 3rem;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
h3 {
|
|
43
|
-
font-size: 2rem;
|
|
44
|
-
margin-top: 3rem;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
h4 {
|
|
48
|
-
font-size: 1.44rem;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
h5 {
|
|
52
|
-
font-size: 1.15rem;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
h6 {
|
|
56
|
-
font-size: 0.96rem;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
article h1 {
|
|
60
|
-
font-weight: 600;
|
|
61
|
-
font-size: 2rem;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
@media only screen and (max-width: 720px) {
|
|
1
|
+
@layer reset, typography;
|
|
2
|
+
|
|
3
|
+
/* TODO remove unset color */
|
|
4
|
+
|
|
5
|
+
@layer typography {
|
|
6
|
+
html {
|
|
7
|
+
font-family:
|
|
8
|
+
-apple-system,
|
|
9
|
+
BlinkMacSystemFont,
|
|
10
|
+
avenir next,
|
|
11
|
+
avenir,
|
|
12
|
+
segoe ui,
|
|
13
|
+
helvetica neue,
|
|
14
|
+
helvetica,
|
|
15
|
+
Cantarell,
|
|
16
|
+
Ubuntu,
|
|
17
|
+
roboto,
|
|
18
|
+
noto,
|
|
19
|
+
arial,
|
|
20
|
+
sans-serif;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h1,
|
|
24
|
+
h2,
|
|
25
|
+
h3,
|
|
26
|
+
h4,
|
|
27
|
+
h5,
|
|
28
|
+
h6 {
|
|
29
|
+
margin-top: 0.5rem;
|
|
30
|
+
margin-bottom: 1rem;
|
|
31
|
+
text-rendering: optimizeLegibility;
|
|
32
|
+
font-weight: 600;
|
|
33
|
+
line-height: 1.1;
|
|
34
|
+
}
|
|
35
|
+
|
|
65
36
|
h1 {
|
|
66
|
-
font-size:
|
|
37
|
+
font-size: 3rem;
|
|
38
|
+
line-height: 1.2;
|
|
39
|
+
font-weight: 800;
|
|
67
40
|
}
|
|
68
41
|
|
|
69
42
|
h2 {
|
|
70
|
-
font-size: 2.
|
|
43
|
+
font-size: 2.6rem;
|
|
44
|
+
margin-top: 3rem;
|
|
71
45
|
}
|
|
72
46
|
|
|
73
47
|
h3 {
|
|
74
|
-
font-size:
|
|
48
|
+
font-size: 2rem;
|
|
49
|
+
margin-top: 3rem;
|
|
75
50
|
}
|
|
76
51
|
|
|
77
52
|
h4 {
|
|
78
|
-
font-size: 1.
|
|
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
|
-
Liberation Mono,
|
|
117
|
-
Lucida Console,
|
|
118
|
-
monospace;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
code {
|
|
122
|
-
font-size: 0.9em;
|
|
123
|
-
margin-inline: 0px;
|
|
124
|
-
padding: 3px 4px;
|
|
125
|
-
border-radius: 5px;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
pre {
|
|
129
|
-
padding: 1rem 1.5rem;
|
|
130
|
-
border-radius: 5px;
|
|
131
|
-
overflow-x: auto;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
blockquote {
|
|
135
|
-
margin: 1.5em 0;
|
|
136
|
-
padding: 0 1.6em 0 1.6em;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
a {
|
|
140
|
-
text-decoration: none;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
li.checked,
|
|
144
|
-
li.unchecked {
|
|
145
|
-
padding-left: 0.8rem;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
figcaption {
|
|
149
|
-
margin-top: 0.5rem;
|
|
150
|
-
font-style: italic;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
article+article {
|
|
154
|
-
margin-top: 1rem;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
article a {
|
|
158
|
-
color: unset;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
article a:hover {
|
|
162
|
-
color: unset;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
article h2 {
|
|
166
|
-
margin-top: 2rem;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
th,
|
|
170
|
-
td {
|
|
171
|
-
padding: 12px 15px;
|
|
172
|
-
text-align: left;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
th:first-child,
|
|
176
|
-
td:first-child {
|
|
177
|
-
padding-left: 0;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
th:last-child,
|
|
181
|
-
td:last-child {
|
|
182
|
-
padding-right: 0;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
:where(pre,
|
|
186
|
-
blockquote,
|
|
187
|
-
dl,
|
|
188
|
-
figure,
|
|
189
|
-
table,
|
|
190
|
-
p,
|
|
191
|
-
ul,
|
|
53
|
+
font-size: 1.44rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
h5 {
|
|
57
|
+
font-size: 1.15rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
h6 {
|
|
61
|
+
font-size: 0.96rem;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
article h1 {
|
|
65
|
+
font-weight: 600;
|
|
66
|
+
font-size: 2rem;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@media only screen and (max-width: 720px) {
|
|
70
|
+
h1 {
|
|
71
|
+
font-size: 2.5rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
h2 {
|
|
75
|
+
font-size: 2.1rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
h3 {
|
|
79
|
+
font-size: 1.75rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
h4 {
|
|
83
|
+
font-size: 1.25rem;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
p {
|
|
88
|
+
margin-top: 0;
|
|
89
|
+
}
|
|
90
|
+
|
|
192
91
|
ol,
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
92
|
+
ul {
|
|
93
|
+
/* padding-left: 0; */
|
|
94
|
+
margin-top: 0;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
ul ul,
|
|
98
|
+
ul ol,
|
|
99
|
+
ol ol,
|
|
100
|
+
ol ul {
|
|
101
|
+
font-size: 100%;
|
|
102
|
+
/* margin: 1rem 0 1rem 3rem; */
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
li {
|
|
106
|
+
margin-bottom: 0.5rem;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/* Extra selector for specificity, see below */
|
|
110
|
+
li>p:not(:last-child) {
|
|
111
|
+
margin: 0;
|
|
112
|
+
padding: 0;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
pre,
|
|
116
|
+
code {
|
|
117
|
+
font-family:
|
|
118
|
+
Menlo,
|
|
119
|
+
Consolas,
|
|
120
|
+
Monaco,
|
|
121
|
+
Liberation Mono,
|
|
122
|
+
Lucida Console,
|
|
123
|
+
monospace;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
code {
|
|
127
|
+
font-size: 0.9em;
|
|
128
|
+
margin-inline: 0px;
|
|
129
|
+
padding: 3px 4px;
|
|
130
|
+
border-radius: 5px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
pre {
|
|
134
|
+
padding: 1rem 1.5rem;
|
|
135
|
+
border-radius: 5px;
|
|
136
|
+
overflow-x: auto;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
blockquote {
|
|
140
|
+
margin: 1.5em 0;
|
|
141
|
+
padding: 0 1.6em 0 1.6em;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
a {
|
|
145
|
+
text-decoration: none;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
li.checked,
|
|
149
|
+
li.unchecked {
|
|
150
|
+
padding-left: 0.8rem;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
figcaption {
|
|
154
|
+
margin-top: 0.5rem;
|
|
155
|
+
font-style: italic;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
article+article {
|
|
159
|
+
margin-top: 1rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
article a {
|
|
163
|
+
color: unset;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
article a:hover {
|
|
167
|
+
color: unset;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
article h2 {
|
|
171
|
+
margin-top: 2rem;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
th,
|
|
175
|
+
td {
|
|
176
|
+
padding: 12px 15px;
|
|
177
|
+
text-align: left;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
th:first-child,
|
|
181
|
+
td:first-child {
|
|
182
|
+
padding-left: 0;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
th:last-child,
|
|
186
|
+
td:last-child {
|
|
187
|
+
padding-right: 0;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
:where(pre,
|
|
191
|
+
blockquote,
|
|
192
|
+
dl,
|
|
193
|
+
figure,
|
|
194
|
+
table,
|
|
195
|
+
p,
|
|
196
|
+
ul,
|
|
197
|
+
ol,
|
|
198
|
+
form,
|
|
199
|
+
article,
|
|
200
|
+
section,
|
|
201
|
+
aside,
|
|
202
|
+
time,
|
|
203
|
+
dl):not(:last-child) {
|
|
204
|
+
margin-bottom: 2.5rem;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
hr {
|
|
208
|
+
margin-top: 3rem;
|
|
209
|
+
margin-bottom: 3.5rem;
|
|
210
|
+
border-width: 0px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
dt {
|
|
214
|
+
font-weight: 500;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
time {
|
|
218
|
+
display: block;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
time a {
|
|
222
|
+
color: unset;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
[aria-label=Breadcrumbs] a {
|
|
226
|
+
font-size: 0.8em;
|
|
227
|
+
color: unset;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
[aria-label=Breadcrumbs]>a:not(:last-child):after {
|
|
231
|
+
margin-inline: 0.2em;
|
|
232
|
+
content: '/';
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
nav>a {
|
|
236
|
+
text-wrap: nowrap;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.icon {
|
|
240
|
+
height: 1em;
|
|
241
|
+
width: 1em;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
header a[rel=home] {
|
|
245
|
+
color: unset;
|
|
246
|
+
font-weight: 900;
|
|
247
|
+
font-size: 2.8em;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
header .logo {
|
|
251
|
+
display: inline-block;
|
|
252
|
+
height: 1em;
|
|
253
|
+
width: 1em;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
header .tagline {
|
|
257
|
+
font-weight: 500;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
nav a:where([aria-current='page'], [aria-current='true']),
|
|
261
|
+
nav a:where([aria-current='page'], [aria-current='true']):hover {
|
|
262
|
+
text-decoration: none;
|
|
263
|
+
color: unset;
|
|
264
|
+
cursor: default;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
aside h2 {
|
|
268
|
+
margin: 0 0 0.5em 0;
|
|
269
|
+
font-size: 1.1em;
|
|
270
|
+
}
|
|
254
271
|
}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
.link-preview {
|
|
2
|
-
h2 {
|
|
3
|
-
margin-top: 0;
|
|
4
|
-
}
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.folder-blog {
|
|
8
|
-
margin-block: var(--size-9);
|
|
9
|
-
|
|
10
|
-
& > article + article {
|
|
11
|
-
border-top: 1px solid var(--surface-3);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
& > article > .content,
|
|
15
|
-
& > article > :not(h1, time) {
|
|
16
|
-
display: none;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
& > article {
|
|
20
|
-
display: flex;
|
|
21
|
-
flex-direction: row;
|
|
22
|
-
justify-content: space-between;
|
|
23
|
-
gap: 1rem;
|
|
24
|
-
align-items: baseline;
|
|
25
|
-
padding-inline: 0;
|
|
26
|
-
background: unset;
|
|
27
|
-
border-radius: 0;
|
|
28
|
-
border: unset;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
& article + article {
|
|
32
|
-
border-top: 1px solid grey;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
& > article > h1 {
|
|
36
|
-
max-inline-size: unset;
|
|
37
|
-
font-weight: 600;
|
|
38
|
-
flex: 1;
|
|
39
|
-
font-size: 1em;
|
|
40
|
-
display: flex;
|
|
41
|
-
align-items: center;
|
|
42
|
-
justify-content: space-between;
|
|
43
|
-
gap: 1rem;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
& > article > time {
|
|
47
|
-
margin-left: auto;
|
|
48
|
-
margin: 0;
|
|
49
|
-
font-size: 1em;
|
|
50
|
-
}
|
|
51
|
-
}
|
package/docs-source/blog/home.md
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|