File tree 2 files changed +5
-7
lines changed
src/renderer/html_handlebars
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,8 @@ impl HtmlHandlebars {
275
275
"FontAwesome/fonts/FontAwesome.ttf" ,
276
276
theme:: FONT_AWESOME_TTF ,
277
277
) ?;
278
- if html_config. copy_fonts {
278
+ // Don't copy the stock fonts if the user has specified their own fonts to use.
279
+ if html_config. copy_fonts && theme. fonts_css . is_none ( ) {
279
280
write_file ( destination, "fonts/fonts.css" , theme:: fonts:: CSS ) ?;
280
281
for ( file_name, contents) in theme:: fonts:: LICENSES . iter ( ) {
281
282
write_file ( destination, file_name, contents) ?;
Original file line number Diff line number Diff line change @@ -891,19 +891,16 @@ fn custom_fonts() {
891
891
assert_eq ! ( actual_files( & p. join( "book/fonts" ) ) , & builtin_fonts) ;
892
892
assert ! ( has_fonts_css( p) ) ;
893
893
894
- // Mixed with copy_fonts =true
895
- // This should generate a deprecation warning .
894
+ // Mixed with copy-fonts =true
895
+ // Should ignore the copy-fonts setting since the user has provided their own fonts.css .
896
896
let temp = TempFileBuilder :: new ( ) . prefix ( "mdbook" ) . tempdir ( ) . unwrap ( ) ;
897
897
let p = temp. path ( ) ;
898
898
MDBook :: init ( p) . build ( ) . unwrap ( ) ;
899
899
write_file ( & p. join ( "theme/fonts" ) , "fonts.css" , b"/*custom*/" ) . unwrap ( ) ;
900
900
write_file ( & p. join ( "theme/fonts" ) , "myfont.woff" , b"" ) . unwrap ( ) ;
901
901
MDBook :: load ( p) . unwrap ( ) . build ( ) . unwrap ( ) ;
902
902
assert ! ( has_fonts_css( p) ) ;
903
- let mut expected = Vec :: from ( builtin_fonts) ;
904
- expected. push ( "myfont.woff" ) ;
905
- expected. sort ( ) ;
906
- assert_eq ! ( actual_files( & p. join( "book/fonts" ) ) , expected. as_slice( ) ) ;
903
+ assert_eq ! ( actual_files( & p. join( "book/fonts" ) ) , [ "fonts.css" , "myfont.woff" ] ) ;
907
904
908
905
// copy-fonts=false, no theme
909
906
// This should generate a deprecation warning.
You can’t perform that action at this time.
0 commit comments