@@ -100,12 +100,24 @@ crate mod source_serif_4 {
100100 /// The file `SourceSerif4-Regular.ttf.woff`, the Regular variant of the Source Serif 4 font.
101101 crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Regular.ttf.woff" ) ;
102102
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+
103107 /// The file `SourceSerif4-Bold.ttf.woff`, the Bold variant of the Source Serif 4 font.
104108 crate static BOLD : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-Bold.ttf.woff" ) ;
105109
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+
106114 /// The file `SourceSerif4-It.ttf.woff`, the Italic variant of the Source Serif 4 font.
107115 crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-It.ttf.woff" ) ;
108116
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+
109121 /// The file `SourceSerif4-LICENSE.txt`, the license text for the Source Serif 4 font.
110122 crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/SourceSerif4-LICENSE.md" ) ;
111123}
@@ -115,13 +127,25 @@ crate mod source_code_pro {
115127 /// The file `SourceCodePro-Regular.ttf.woff`, the Regular variant of the Source Code Pro font.
116128 crate static REGULAR : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Regular.ttf.woff" ) ;
117129
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+
118134 /// The file `SourceCodePro-Semibold.ttf.woff`, the Semibold variant of the Source Code Pro
119135 /// font.
120136 crate static SEMIBOLD : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-Semibold.ttf.woff" ) ;
121137
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+
122142 /// The file `SourceCodePro-It.ttf.woff`, the Italic variant of the Source Code Pro font.
123143 crate static ITALIC : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-It.ttf.woff" ) ;
124144
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+
125149 /// The file `SourceCodePro-LICENSE.txt`, the license text of the Source Code Pro font.
126150 crate static LICENSE : & [ u8 ] = include_bytes ! ( "static/SourceCodePro-LICENSE.txt" ) ;
127151}
0 commit comments