Don't warn on copy-fonts=true (the default) when fonts.css is overridden.
This commit is contained in:
parent
04016f3be6
commit
75a6d65e5a
|
@ -291,19 +291,12 @@ impl HtmlHandlebars {
|
||||||
}
|
}
|
||||||
if let Some(fonts_css) = &theme.fonts_css {
|
if let Some(fonts_css) = &theme.fonts_css {
|
||||||
if !fonts_css.is_empty() {
|
if !fonts_css.is_empty() {
|
||||||
if html_config.copy_fonts {
|
|
||||||
warn!(
|
|
||||||
"output.html.copy_fonts is deprecated.\n\
|
|
||||||
Set copy-fonts=false in book.toml and ensure the fonts you want are in \
|
|
||||||
the `theme/fonts/` directory."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
write_file(destination, "fonts/fonts.css", &fonts_css)?;
|
write_file(destination, "fonts/fonts.css", &fonts_css)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !html_config.copy_fonts && theme.fonts_css.is_none() {
|
if !html_config.copy_fonts && theme.fonts_css.is_none() {
|
||||||
warn!(
|
warn!(
|
||||||
"output.html.copy_fonts is deprecated.\n\
|
"output.html.copy-fonts is deprecated.\n\
|
||||||
This book appears to have copy-fonts=false in book.toml without a fonts.css file.\n\
|
This book appears to have copy-fonts=false in book.toml without a fonts.css file.\n\
|
||||||
Add an empty `theme/fonts/fonts.css` file to squelch this warning."
|
Add an empty `theme/fonts/fonts.css` file to squelch this warning."
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue