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,124 +1,120 @@
|
|
|
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
|
-
code,
|
|
121
|
-
mark {
|
|
122
|
-
-webkit-box-decoration-break: clone;
|
|
123
|
-
box-decoration-break: clone;
|
|
1
|
+
@layer reset {
|
|
2
|
+
html {
|
|
3
|
+
-webkit-text-size-adjust: 100%;
|
|
4
|
+
margin: 0;
|
|
5
|
+
font-size: 62.5%;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
body {
|
|
9
|
+
font-size: 1.6rem;
|
|
10
|
+
line-height: 1.5;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
|
+
font-weight: 400;
|
|
13
|
+
margin: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
body {
|
|
17
|
+
min-height: 100vh;
|
|
18
|
+
overflow-x: hidden;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
*,
|
|
22
|
+
*::before,
|
|
23
|
+
*::after {
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
* {
|
|
28
|
+
margin: 0;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
img,
|
|
32
|
+
details,
|
|
33
|
+
picture,
|
|
34
|
+
video,
|
|
35
|
+
canvas,
|
|
36
|
+
svg,
|
|
37
|
+
object {
|
|
38
|
+
display: block;
|
|
39
|
+
max-width: 100%;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
summary {
|
|
43
|
+
display: list-item;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
hr {
|
|
47
|
+
box-sizing: content-box;
|
|
48
|
+
height: 0;
|
|
49
|
+
overflow: visible;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
pre {
|
|
53
|
+
font-family: monospace, monospace;
|
|
54
|
+
font-size: 1em;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
a {
|
|
58
|
+
background-color: transparent;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
abbr[title] {
|
|
62
|
+
border-bottom: none;
|
|
63
|
+
text-decoration: underline;
|
|
64
|
+
text-decoration: underline dotted;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
b,
|
|
68
|
+
strong {
|
|
69
|
+
font-weight: bolder;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
code,
|
|
73
|
+
kbd,
|
|
74
|
+
samp {
|
|
75
|
+
font-family: monospace, monospace;
|
|
76
|
+
font-size: 1em;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
small {
|
|
80
|
+
font-size: 80%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
sub,
|
|
84
|
+
sup {
|
|
85
|
+
font-size: 75%;
|
|
86
|
+
line-height: 0;
|
|
87
|
+
position: relative;
|
|
88
|
+
vertical-align: baseline;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
sub {
|
|
92
|
+
bottom: -0.25em;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
sup {
|
|
96
|
+
top: -0.5em;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
img {
|
|
100
|
+
border-style: none;
|
|
101
|
+
height: auto;
|
|
102
|
+
overflow: hidden;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
p,
|
|
106
|
+
h1,
|
|
107
|
+
h2,
|
|
108
|
+
h3,
|
|
109
|
+
h4,
|
|
110
|
+
h5,
|
|
111
|
+
h6 {
|
|
112
|
+
overflow-wrap: break-word;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
code,
|
|
116
|
+
mark {
|
|
117
|
+
-webkit-box-decoration-break: clone;
|
|
118
|
+
box-decoration-break: clone;
|
|
119
|
+
}
|
|
124
120
|
}
|