We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f508db6 commit 88fabd7Copy full SHA for 88fabd7
src/book/mdbook.rs
@@ -198,6 +198,10 @@ impl MDBook {
198
let mut css = try!(File::create(&theme_dir.join("book.css")));
199
try!(css.write_all(theme::CSS));
200
201
+ // favicon.png
202
+ let mut favicon = try!(File::create(&theme_dir.join("favicon.png")));
203
+ try!(favicon.write_all(theme::FAVICON));
204
+
205
// book.js
206
let mut js = try!(File::create(&theme_dir.join("book.js")));
207
try!(js.write_all(theme::JS));
0 commit comments