@@ -100,12 +100,24 @@ crate mod source_serif_4 {
100
100
/// The file `SourceSerif4-Regular.ttf.woff`, the Regular variant of the Source Serif 4 font.
101
101
crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Regular.ttf.woff" ) ;
102
102
103
+ /// The file `SourceSerif4-Regular.ttf.woff2`, the Regular variant of the Source Serif 4 font in
104
+ /// woff2.
105
+ crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Regular.ttf.woff2" ) ;
106
+
103
107
/// The file `SourceSerif4-Bold.ttf.woff`, the Bold variant of the Source Serif 4 font.
104
108
crate static BOLD : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Bold.ttf.woff" ) ;
105
109
110
+ /// The file `SourceSerif4-Bold.ttf.woff2`, the Bold variant of the Source Serif 4 font in
111
+ /// woff2.
112
+ crate static BOLD2 : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Bold.ttf.woff2" ) ;
113
+
106
114
/// The file `SourceSerif4-It.ttf.woff`, the Italic variant of the Source Serif 4 font.
107
115
crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-It.ttf.woff" ) ;
108
116
117
+ /// The file `SourceSerif4-It.ttf.woff2`, the Italic variant of the Source Serif 4 font in
118
+ /// woff2.
119
+ crate static ITALIC2 : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-It.ttf.woff2" ) ;
120
+
109
121
/// The file `SourceSerif4-LICENSE.txt`, the license text for the Source Serif 4 font.
110
122
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-LICENSE.md" ) ;
111
123
}
@@ -115,13 +127,25 @@ crate mod source_code_pro {
115
127
/// The file `SourceCodePro-Regular.ttf.woff`, the Regular variant of the Source Code Pro font.
116
128
crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Regular.ttf.woff" ) ;
117
129
130
+ /// The file `SourceCodePro-Regular.ttf.woff2`, the Regular variant of the Source Code Pro font
131
+ /// in woff2.
132
+ crate static REGULAR2 : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Regular.ttf.woff2" ) ;
133
+
118
134
/// The file `SourceCodePro-Semibold.ttf.woff`, the Semibold variant of the Source Code Pro
119
135
/// font.
120
136
crate static SEMIBOLD : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Semibold.ttf.woff" ) ;
121
137
138
+ /// The file `SourceCodePro-Semibold.ttf.woff2`, the Semibold variant of the Source Code Pro
139
+ /// font in woff2.
140
+ crate static SEMIBOLD2 : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Semibold.ttf.woff2" ) ;
141
+
122
142
/// The file `SourceCodePro-It.ttf.woff`, the Italic variant of the Source Code Pro font.
123
143
crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-It.ttf.woff" ) ;
124
144
145
+ /// The file `SourceCodePro-It.ttf.woff2`, the Italic variant of the Source Code Pro font in
146
+ /// woff2.
147
+ crate static ITALIC2 : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-It.ttf.woff2" ) ;
148
+
125
149
/// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font.
126
150
crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-LICENSE.txt" ) ;
127
151
}
0 commit comments