@@ -92,72 +92,47 @@ crate mod themes {
92
92
93
93
/// Files related to the Fira Sans font.
94
94
crate mod fira_sans {
95
- /// The file `FiraSans-Regular.woff`, the Regular variant of the Fira Sans font.
96
- crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Regular.woff" ) ;
97
-
98
95
/// The file `FiraSans-Regular.woff2`, the Regular variant of the Fira Sans font in woff2.
99
- crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Regular.woff2" ) ;
100
-
101
- /// The file `FiraSans-Medium.woff`, the Medium variant of the Fira Sans font.
102
- crate static MEDIUM : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Medium.woff" ) ;
96
+ crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Regular.woff2" ) ;
103
97
104
98
/// The file `FiraSans-Medium.woff2`, the Medium variant of the Fira Sans font in woff2.
105
- crate static MEDIUM2 : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Medium.woff2" ) ;
99
+ crate static MEDIUM : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-Medium.woff2" ) ;
106
100
107
101
/// The file `FiraSans-LICENSE.txt`, the license text for the Fira Sans font.
108
102
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/fonts/FiraSans-LICENSE.txt" ) ;
109
103
}
110
104
111
105
/// Files related to the Source Serif 4 font.
112
106
crate mod source_serif_4 {
113
- /// The file `SourceSerif4-Regular.ttf.woff`, the Regular variant of the Source Serif 4 font.
114
- crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Regular.ttf.woff" ) ;
115
-
116
107
/// The file `SourceSerif4-Regular.ttf.woff2`, the Regular variant of the Source Serif 4 font in
117
108
/// woff2.
118
- crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Regular.ttf.woff2" ) ;
119
-
120
- /// The file `SourceSerif4-Bold.ttf.woff`, the Bold variant of the Source Serif 4 font.
121
- crate static BOLD : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Bold.ttf.woff" ) ;
109
+ crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Regular.ttf.woff2" ) ;
122
110
123
111
/// The file `SourceSerif4-Bold.ttf.woff2`, the Bold variant of the Source Serif 4 font in
124
112
/// woff2.
125
- crate static BOLD2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Bold.ttf.woff2" ) ;
126
-
127
- /// The file `SourceSerif4-It.ttf.woff`, the Italic variant of the Source Serif 4 font.
128
- crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-It.ttf.woff" ) ;
113
+ crate static BOLD : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-Bold.ttf.woff2" ) ;
129
114
130
115
/// The file `SourceSerif4-It.ttf.woff2`, the Italic variant of the Source Serif 4 font in
131
116
/// woff2.
132
- crate static ITALIC2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-It.ttf.woff2" ) ;
117
+ crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-It.ttf.woff2" ) ;
133
118
134
119
/// The file `SourceSerif4-LICENSE.txt`, the license text for the Source Serif 4 font.
135
120
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/fonts/SourceSerif4-LICENSE.md" ) ;
136
121
}
137
122
138
123
/// Files related to the Source Code Pro font.
139
124
crate mod source_code_pro {
140
- /// The file `SourceCodePro-Regular.ttf.woff`, the Regular variant of the Source Code Pro font.
141
- crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Regular.ttf.woff" ) ;
142
-
143
125
/// The file `SourceCodePro-Regular.ttf.woff2`, the Regular variant of the Source Code Pro font
144
126
/// in woff2.
145
- crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Regular.ttf.woff2" ) ;
146
-
147
- /// The file `SourceCodePro-Semibold.ttf.woff`, the Semibold variant of the Source Code Pro
148
- /// font.
149
- crate static SEMIBOLD : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Semibold.ttf.woff" ) ;
127
+ crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Regular.ttf.woff2" ) ;
150
128
151
129
/// The file `SourceCodePro-Semibold.ttf.woff2`, the Semibold variant of the Source Code Pro
152
130
/// font in woff2.
153
- crate static SEMIBOLD2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Semibold.ttf.woff2" ) ;
154
-
155
- /// The file `SourceCodePro-It.ttf.woff`, the Italic variant of the Source Code Pro font.
156
- crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-It.ttf.woff" ) ;
131
+ crate static SEMIBOLD : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-Semibold.ttf.woff2" ) ;
157
132
158
133
/// The file `SourceCodePro-It.ttf.woff2`, the Italic variant of the Source Code Pro font in
159
134
/// woff2.
160
- crate static ITALIC2 : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-It.ttf.woff2" ) ;
135
+ crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-It.ttf.woff2" ) ;
161
136
162
137
/// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font.
163
138
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/fonts/SourceCodePro-LICENSE.txt" ) ;
@@ -176,19 +151,11 @@ crate mod source_code_pro {
176
151
/// ```sh
177
152
/// pyftsubset NanumBarunGothic.ttf \
178
153
/// --unicodes=U+AC00-D7AF,U+1100-11FF,U+3130-318F,U+A960-A97F,U+D7B0-D7FF \
179
- /// --output-file=NanumBarunGothic.ttf.woff --flavor=woff
180
- /// ```
181
- /// ```sh
182
- /// pyftsubset NanumBarunGothic.ttf \
183
- /// --unicodes=U+AC00-D7AF,U+1100-11FF,U+3130-318F,U+A960-A97F,U+D7B0-D7FF \
184
154
/// --output-file=NanumBarunGothic.ttf.woff2 --flavor=woff2
185
155
/// ```
186
156
crate mod nanum_barun_gothic {
187
- /// The file `NanumBarunGothic.ttf.woff`, the Regular variant of the Nanum Barun Gothic font.
188
- crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/NanumBarunGothic.ttf.woff" ) ;
189
-
190
157
/// The file `NanumBarunGothic.ttf.woff2`, the Regular variant of the Nanum Barun Gothic font.
191
- crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/fonts/NanumBarunGothic.ttf.woff2" ) ;
158
+ crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/fonts/NanumBarunGothic.ttf.woff2" ) ;
192
159
193
160
/// The file `NanumBarunGothic-LICENSE.txt`, the license text of the Nanum Barun Gothic font.
194
161
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/fonts/NanumBarunGothic-LICENSE.txt" ) ;
0 commit comments