We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b51d3e5 + f47066f commit 7e09491Copy full SHA for 7e09491
1 file changed
crates/mdbook-driver/src/mdbook.rs
@@ -44,16 +44,6 @@ impl MDBook {
44
let book_root = book_root.into();
45
let config_location = book_root.join("book.toml");
46
47
- // the book.json file is no longer used, so we should emit a warning to
48
- // let people know to migrate to book.toml
49
- if book_root.join("book.json").exists() {
50
- warn!("It appears you are still using book.json for configuration.");
51
- warn!("This format is no longer used, so you should migrate to the");
52
- warn!("book.toml format.");
53
- warn!("Check the user guide for migration information:");
54
- warn!("\thttps://rust-lang.github.io/mdBook/format/config.html");
55
- }
56
-
57
let mut config = if config_location.exists() {
58
debug!("Loading config from {}", config_location.display());
59
Config::from_disk(&config_location)?
0 commit comments