From 3b8c8390e105f5b72c1630109f86215ecbcf7699 Mon Sep 17 00:00:00 2001 From: Max Heller Date: Sat, 14 Sep 2024 15:58:31 -0400 Subject: [PATCH] chore(docs): update example books (#114) --- Cargo.toml | 3 + books/cargo | 2 +- books/mdBook | 2 +- books/nomicon | 2 +- books/rust-book | 2 +- books/rust-by-example | 2 +- books/rust-edition-guide | 2 +- books/rust-embedded | 2 +- books/rust-reference | 2 +- books/rustc-dev-guide | 2 +- src/lib.rs | 1 + .../mdbook_pandoc__tests__cargo_book.snap | 6 + ...ook_pandoc__tests__rust_edition_guide.snap | 31 ++- .../mdbook_pandoc__tests__rust_reference.snap | 214 +++++++++--------- ...mdbook_pandoc__tests__rustc_dev_guide.snap | 8 +- 15 files changed, 159 insertions(+), 122 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0373c31..f6edf0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,6 +50,9 @@ tracing-subscriber = { version = "0.3.0", default-features = false, features = [ insta.opt-level = 3 similar.opt-level = 3 +[workspace] +exclude = ["books/rust-reference/mdbook-spec"] + # The profile that 'cargo dist' will build with [profile.dist] inherits = "release" diff --git a/books/cargo b/books/cargo index 637a2cd..643a025 160000 --- a/books/cargo +++ b/books/cargo @@ -1 +1 @@ -Subproject commit 637a2cd328ab076d25a8b63bf2e7b777f7af5bba +Subproject commit 643a025b3c3ad6f7d3acea558d223784ea8ab932 diff --git a/books/mdBook b/books/mdBook index ec996d3..6f281a6 160000 --- a/books/mdBook +++ b/books/mdBook @@ -1 +1 @@ -Subproject commit ec996d350955a8974f8cae5a55c1374ae8da4fac +Subproject commit 6f281a6401b2fd83c3f3f61460e0548f2e03ff60 diff --git a/books/nomicon b/books/nomicon index 0ebdaca..14649f1 160000 --- a/books/nomicon +++ b/books/nomicon @@ -1 +1 @@ -Subproject commit 0ebdacadbda8ce2cd8fbf93985e15af61a7ab895 +Subproject commit 14649f15d232d509478206ee9ed5105641aa60d0 diff --git a/books/rust-book b/books/rust-book index ee5c7ec..2b07207 160000 --- a/books/rust-book +++ b/books/rust-book @@ -1 +1 @@ -Subproject commit ee5c7ec70496cc625b467012c44caa167eb60309 +Subproject commit 2b0720772caa9d3e22f08b2b4c109f1fc05ade33 diff --git a/books/rust-by-example b/books/rust-by-example index 658c6c2..c79ec34 160000 --- a/books/rust-by-example +++ b/books/rust-by-example @@ -1 +1 @@ -Subproject commit 658c6c27cb975b92227936024816986c2d3716fb +Subproject commit c79ec345f08a1e94494cdc8c999709a90203fd88 diff --git a/books/rust-edition-guide b/books/rust-edition-guide index 941db8b..b3ca7ad 160000 --- a/books/rust-edition-guide +++ b/books/rust-edition-guide @@ -1 +1 @@ -Subproject commit 941db8b3df45fd46cd87b50a5c86714b91dcde9c +Subproject commit b3ca7ade0f87d7e3fb538776defc5b2cc4188172 diff --git a/books/rust-embedded b/books/rust-embedded index b10c6ac..dbae36b 160000 --- a/books/rust-embedded +++ b/books/rust-embedded @@ -1 +1 @@ -Subproject commit b10c6acaf0f43481f6600e95d4b5013446e29f7a +Subproject commit dbae36bf3f8410aa4313b3bad42e374735d48a9d diff --git a/books/rust-reference b/books/rust-reference index aa99472..06eb669 160000 --- a/books/rust-reference +++ b/books/rust-reference @@ -1 +1 @@ -Subproject commit aa99472817a28d7fde10de400f8711de123de4fd +Subproject commit 06eb669c1f9037f7425f102c8be5982d60d4c8b2 diff --git a/books/rustc-dev-guide b/books/rustc-dev-guide index db1c4ca..d39f68b 160000 --- a/books/rustc-dev-guide +++ b/books/rustc-dev-guide @@ -1 +1 @@ -Subproject commit db1c4ca3f1c68032459f1977ee28754bf0b49ae0 +Subproject commit d39f68ba831f87144b7d2f49d35886a90e562b69 diff --git a/src/lib.rs b/src/lib.rs index 12034dc..99b3c19 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -379,6 +379,7 @@ mod tests { pub fn build(mut self) -> BuildOutput { let mut renderer = Renderer::new(); renderer.logfile = Some(self.logfile.try_clone().unwrap()); + env::set_current_dir(&self.book.root).unwrap(); let res = self.book.execute_build_process(&renderer); self.logfile.seek(io::SeekFrom::Start(0)).unwrap(); let mut logs = String::new(); diff --git a/src/snapshots/mdbook_pandoc__tests__cargo_book.snap b/src/snapshots/mdbook_pandoc__tests__cargo_book.snap index c072342..a84c008 100644 --- a/src/snapshots/mdbook_pandoc__tests__cargo_book.snap +++ b/src/snapshots/mdbook_pandoc__tests__cargo_book.snap @@ -183,5 +183,11 @@ DEBUG mdbook_pandoc::pandoc::renderer: Running pandoc [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pdf__src__commands__cargo-buildmd__option-cargo-build---keep-going' on $PAGE undefined on input $LINE. +[WARNING] [makePDF] LaTeX Warning: Hyper reference + `book__pdf__src__commands__cargomd__option-cargo---offline' + on $PAGE undefined on input $LINE. +[WARNING] [makePDF] LaTeX Warning: Hyper reference + `book__pdf__src__commands__cargomd__option-cargo---frozen' + on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: There were undefined references. INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap b/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap index da3db70..389c19d 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_edition_guide.snap @@ -94,19 +94,31 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/prelude/index.html' in chapter 'rust-2024/prelude.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/prelude/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.Future.html' in chapter 'rust-2024/prelude.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/future/trait.Future.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.IntoFuture.html' in chapter 'rust-2024/prelude.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/future/trait.IntoFuture.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#rust-2024-prelude-collisions' in chapter 'rust-2024/prelude.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/iter/trait.IntoIterator.html' in chapter 'rust-2024/intoiterator-box-slice.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/iter/trait.IntoIterator.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/iter/trait.IntoIterator.html#tymethod.into_iter' in chapter 'rust-2024/intoiterator-box-slice.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/iter/trait.IntoIterator.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/iter/trait.IntoIterator.html#tymethod.into_iter' in chapter 'rust-2024/intoiterator-box-slice.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/iter/trait.IntoIterator.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#boxed-slice-into-iter' in chapter 'rust-2024/intoiterator-box-slice.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#boxed-slice-into-iter' in chapter 'rust-2024/intoiterator-box-slice.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/unsafe-keyword.html#unsafe-functions-unsafe-fn' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/unsafe-keyword.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/env/fn.set_var.html' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/env/fn.set_var.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/env/fn.remove_var.html' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/env/fn.remove_var.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/os/unix/process/trait.CommandExt.html#method.before_exec' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/os/unix/process/trait.CommandExt.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/env/fn.set_var.html' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/env/fn.set_var.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/env/fn.remove_var.html' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/env/fn.remove_var.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/env/fn.set_var.html#safety' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/env/fn.set_var.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/os/unix/process/trait.CommandExt.html#method.before_exec' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/os/unix/process/trait.CommandExt.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/os/unix/process/trait.CommandExt.html#tymethod.pre_exec' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/os/unix/process/trait.CommandExt.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/os/unix/process/trait.CommandExt.html#notes-and-safety' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/os/unix/process/trait.CommandExt.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#deprecated-safe-2024' in chapter 'rust-2024/newly-unsafe-functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'rust-2024/unsafe-op-in-unsafe-fn.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'rust-2024/unsafe-op-in-unsafe-fn.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/unsafety.html' in chapter 'rust-2024/unsafe-op-in-unsafe-fn.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/unsafety.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/expressions/block-expr.html#unsafe-blocks' in chapter 'rust-2024/unsafe-op-in-unsafe-fn.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/expressions/block-expr.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'rust-2024/unsafe-op-in-unsafe-fn.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#static-mut-refs' in chapter 'rust-2024/static-mut-reference.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/items/static-items.html#mutable-statics' in chapter 'rust-2024/static-mut-reference.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/items/static-items.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/behavior-considered-undefined.html' in chapter 'rust-2024/static-mut-reference.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/behavior-considered-undefined.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#static-mut-refs' in chapter 'rust-2024/static-mut-references.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/items/static-items.html#mutable-statics' in chapter 'rust-2024/static-mut-references.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/items/static-items.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/behavior-considered-undefined.html' in chapter 'rust-2024/static-mut-references.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/behavior-considered-undefined.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../cargo/reference/features.html#optional-dependencies' in chapter 'rust-2024/cargo-remove-implicit-features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../cargo/reference/features.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../cargo/reference/features.html' in chapter 'rust-2024/cargo-remove-implicit-features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../cargo/reference/features.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../cargo/reference/semver.html#cargo-feature-remove' in chapter 'rust-2024/cargo-remove-implicit-features.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../cargo/reference/semver.html' @@ -114,7 +126,16 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/keywords.html#reserved-keywords' in chapter 'rust-2024/gen-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/keywords.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/identifiers.html#raw-identifiers' in chapter 'rust-2024/gen-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/identifiers.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#keyword-idents-2024' in chapter 'rust-2024/gen-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/macros-by-example.html#metavariables' in chapter 'rust-2024/macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/macros-by-example.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/expressions/block-expr.html#const-blocks' in chapter 'rust-2024/macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/expressions/block-expr.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/expressions/underscore-expr.html' in chapter 'rust-2024/macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/expressions/underscore-expr.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#edition-2024-expr-fragment-specifier' in chapter 'rust-2024/macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/deny-by-default.html#missing-fragment-specifier' in chapter 'rust-2024/missing-macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/deny-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/deny-by-default.html#missing-fragment-specifier' in chapter 'rust-2024/missing-macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/deny-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/deny-by-default.html#missing-fragment-specifier' in chapter 'rust-2024/missing-macro-fragment-specifiers.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/deny-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#never-type-fallback-flowing-into-unsafe' in chapter 'rust-2024/never-type-fallback.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/type-coercions.html#coercion-sites' in chapter 'rust-2024/never-type-fallback.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/type-coercions.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/warn-by-default.html#never-type-fallback-flowing-into-unsafe' in chapter 'rust-2024/never-type-fallback.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/warn-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/items/external-blocks.html' in chapter 'rust-2024/unsafe-extern.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/items/external-blocks.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/items/external-blocks.html' in chapter 'rust-2024/unsafe-extern.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/items/external-blocks.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#missing-unsafe-on-extern' in chapter 'rust-2024/unsafe-extern.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' @@ -126,4 +147,8 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../../reference/abi.html#the-link_section-attribute' in chapter 'rust-2024/unsafe-attributes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../reference/abi.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/symbol-mangling/index.html' in chapter 'rust-2024/unsafe-attributes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/symbol-mangling/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/listing/allowed-by-default.html#unsafe-attr-outside-unsafe' in chapter 'rust-2024/unsafe-attributes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustc/lints/listing/allowed-by-default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/write-documentation/documentation-tests.html' in chapter 'rust-2024/rustdoc-doctests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustdoc/write-documentation/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/write-documentation/documentation-tests.html#attributes' in chapter 'rust-2024/rustdoc-doctests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustdoc/write-documentation/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/write-documentation/documentation-tests.html#attributes' in chapter 'rust-2024/rustdoc-doctests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../rustdoc/write-documentation/documentation-tests.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/alloc/trait.GlobalAlloc.html' in chapter 'rust-2024/rustdoc-doctests.md', linking to hosted HTML book at 'https://doc.rust-lang.org/edition-guide/rust-2024/../../std/alloc/trait.GlobalAlloc.html' INFO mdbook_pandoc::pandoc::renderer: Wrote output to book/pdf/book.pdf diff --git a/src/snapshots/mdbook_pandoc__tests__rust_reference.snap b/src/snapshots/mdbook_pandoc__tests__rust_reference.snap index 2cb84d8..0b38dec 100644 --- a/src/snapshots/mdbook_pandoc__tests__rust_reference.snap +++ b/src/snapshots/mdbook_pandoc__tests__rust_reference.snap @@ -2,8 +2,6 @@ source: src/lib.rs expression: logs --- - WARN mdbook::preprocess::cmd: The command wasn't found, is the "spec" preprocessor installed? - WARN mdbook::preprocess::cmd: Command: mdbook-spec INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/index.html' @@ -12,12 +10,12 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustc/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../cargo/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../cargo/reference/index.html' in chapter 'introduction.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/macro.include.md' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.include.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/macro.include_str.md' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.include_str.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/macro.include_bytes.md' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.include_bytes.md' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/macro.include.html' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/macro.include.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/macro.include_str.html' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/macro.include_str.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/macro.include_bytes.html' in chapter 'input-format.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/macro.include_bytes.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustdoc/the-doc-attribute.html' in chapter 'comments.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustdoc/the-doc-attribute.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../cargo/reference/build-scripts.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/build-scripts.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/macro.compile_error.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.compile_error.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/macro.compile_error.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/macro.compile_error.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../proc_macro/index.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../proc_macro/struct.TokenStream.html' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/struct.TokenStream.html' @@ -37,18 +35,18 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../proc_macro/enum.Delimiter.html#variant.None' in chapter 'procedural-macros.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../proc_macro/enum.Delimiter.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/process/trait.Termination.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/process/trait.Termination.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/convert/enum.Infallible.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/convert/enum.Infallible.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/convert/enum.Infallible.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/convert/enum.Infallible.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/process/struct.ExitCode.html' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/struct.ExitCode.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/primitive.char.html#method.is_alphanumeric' in chapter 'crates-and-source-files.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.char.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustc/command-line-arguments.html#--cfg-configure-the-compilation-environment' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/command-line-arguments.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../cargo/reference/features.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/features.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/sync/atomic/index.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/sync/atomic/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustc/command-line-arguments.html#--test-build-a-test-harness' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/command-line-arguments.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/macro.debug_assert.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/macro.debug_assert.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/macro.debug_assert.html' in chapter 'conditional-compilation.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/macro.debug_assert.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/the-doc-attribute.html' in chapter 'items/modules.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/the-doc-attribute.html' in chapter 'items/functions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/mem/fn.discriminant.html' in chapter 'items/enumerations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../std/mem/fn.discriminant.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/mem/fn.transmute.html' in chapter 'items/unions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../std/mem/fn.transmute.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/mem/fn.discriminant.html' in chapter 'items/enumerations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../core/mem/fn.discriminant.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/intrinsics/fn.transmute.html' in chapter 'items/unions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../core/intrinsics/fn.transmute.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/the-doc-attribute.html' in chapter 'items/implementations.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustdoc/the-doc-attribute.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/command-line-arguments.html#linking-modifiers-bundle' in chapter 'items/external-blocks.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustc/command-line-arguments.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/command-line-arguments.html#linking-modifiers-whole-archive' in chapter 'items/external-blocks.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/items/../../rustc/command-line-arguments.html' @@ -58,111 +56,107 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/process/trait.Termination.html' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/trait.Termination.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/process/trait.Termination.html#tymethod.report' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/trait.Termination.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/process/struct.ExitCode.html' in chapter 'attributes/testing.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/process/struct.ExitCode.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/cmp/trait.PartialEq.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/cmp/trait.PartialEq.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/clone/trait.Clone.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/clone/trait.Clone.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/cmp/trait.PartialEq.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/cmp/trait.PartialEq.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/clone/trait.Clone.html' in chapter 'attributes/derive.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/clone/trait.Clone.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/index.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/levels.html#via-compiler-flag' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/levels.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/lints/levels.html#capping-lints' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/lints/levels.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustdoc/lints.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustdoc/lints.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/fmt/index.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/fmt/index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../alloc/fmt/index.html' in chapter 'attributes/diagnostics.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../alloc/fmt/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/arch/macro.is_x86_feature_detected.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/arch/macro.is_x86_feature_detected.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/arch/macro.is_aarch64_feature_detected.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../std/arch/macro.is_aarch64_feature_detected.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/codegen-options/index.html#target-cpu' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/codegen-options/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../rustc/codegen-options/index.html#target-feature' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../rustc/codegen-options/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/struct.Location.html#method.caller' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/struct.Location.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/location/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/location/struct.Location.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/location/struct.Location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/location/struct.Location.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/panic/location/struct.Location.html#method.caller' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/panic/location/struct.Location.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/intrinsics/fn.caller_location.html' in chapter 'attributes/codegen.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/attributes/../../core/intrinsics/fn.caller_location.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/boxed/struct.Box.html' in chapter 'expressions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/boxed/struct.Box.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.u8.md#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.u8.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.u8.md#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.u8.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.u32.md#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.u32.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ffi/struct.CStr.html' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ffi/struct.CStr.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ffi/struct.CStr.html' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ffi/struct.CStr.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.u128.md#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.u128.md' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/boxed/struct.Box.html' in chapter 'expressions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.u8.html#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.u8.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.u8.html#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.u8.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.u32.html#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.u32.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ffi/c_str/struct.CStr.html' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ffi/c_str/struct.CStr.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ffi/c_str/struct.CStr.html' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ffi/c_str/struct.CStr.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.u128.html#method.from_str_radix' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.u128.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f32.md#method.from_str' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f64.md#method.from_str' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f32.md#associatedconstant.INFINITY' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f64.md#associatedconstant.INFINITY' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f32.md#associatedconstant.NAN' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f32.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/primitive.f64.md#associatedconstant.NAN' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/primitive.f64.md' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Fn.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Fn.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.Future.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ptr/macro.addr_of.html' in chapter 'expressions/operator-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ptr/macro.addr_of.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ptr/macro.addr_of_mut.html' in chapter 'expressions/operator-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ptr/macro.addr_of_mut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Index.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.IndexMut.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.IndexMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Fn.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.Fn.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnMut.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.FnMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnOnce.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/ops/trait.FnOnce.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/default/trait.Default.html#tymethod.default' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/default/trait.Default.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/mem/fn.size_of.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/mem/fn.size_of.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/iter/trait.IntoIterator.html' in chapter 'expressions/method-call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/iter/trait.IntoIterator.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.IntoFuture.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.IntoFuture.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.IntoFuture.html#tymethod.into_future' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.IntoFuture.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.Future.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/pin/struct.Pin.html#method.new_unchecked' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/pin/struct.Pin.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/future/trait.Future.html#tymethod.poll' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/future/trait.Future.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/task/enum.Poll.html#variant.Pending' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/task/enum.Poll.html#variant.Ready' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/task/enum.Poll.html#variant.Ready' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/enum.Poll.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/task/struct.Context.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/task/struct.Context.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.f32.html#associatedconstant.INFINITY' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.f32.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.f64.html#associatedconstant.INFINITY' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.f64.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.f32.html#associatedconstant.NAN' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.f32.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.f64.html#associatedconstant.NAN' in chapter 'expressions/literal-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../std/primitive.f64.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.Fn.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/function/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/future/future/trait.Future.html' in chapter 'expressions/block-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/future/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/index/trait.Index.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/index/trait.Index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/index/trait.IndexMut.html' in chapter 'expressions/array-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/index/trait.IndexMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.Fn.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/function/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnMut.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/function/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnOnce.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/ops/function/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/default/trait.Default.html#tymethod.default' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/default/trait.Default.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/mem/fn.size_of.html' in chapter 'expressions/call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/mem/fn.size_of.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/iter/traits/collect/trait.IntoIterator.html' in chapter 'expressions/method-call-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/iter/traits/collect/trait.IntoIterator.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/future/into_future/trait.IntoFuture.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/future/into_future/trait.IntoFuture.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/future/into_future/trait.IntoFuture.html#tymethod.into_future' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/future/into_future/trait.IntoFuture.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/future/future/trait.Future.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/future/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/pin/struct.Pin.html#method.new_unchecked' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/pin/struct.Pin.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/future/future/trait.Future.html#tymethod.poll' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/future/future/trait.Future.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/task/poll/enum.Poll.html#variant.Pending' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/task/poll/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/task/poll/enum.Poll.html#variant.Ready' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/task/poll/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/task/poll/enum.Poll.html#variant.Ready' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/task/poll/enum.Poll.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/task/wake/struct.Context.html' in chapter 'expressions/await-expr.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/expressions/../../core/task/wake/struct.Context.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/primitive.bool.html' in chapter 'types/boolean.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/primitive.bool.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/vec/struct.Vec.html' in chapter 'types/array.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/vec/struct.Vec.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Fn.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnMut.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnOnce.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnOnce.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnOnce.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnOnce.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.Fn.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/ops/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../std/ops/trait.FnMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ptr/macro.addr_of.html' in chapter 'types/pointer.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ptr/macro.addr_of.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ptr/macro.addr_of_mut.html' in chapter 'types/pointer.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ptr/macro.addr_of_mut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.align_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.align_of_val.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.size_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.size_of_val.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.size_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.size_of.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.align_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.align_of.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/alloc/struct.Layout.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/alloc/struct.Layout.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.UnsafeCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.RefCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.RefCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/sync/atomic/index.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/sync/atomic/index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../alloc/vec/struct.Vec.html' in chapter 'types/array.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../alloc/vec/struct.Vec.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.Fn.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnMut.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnOnce.html' in chapter 'types/function-item.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnOnce.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.FnOnce.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.Fn.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.Fn.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/ops/function/trait.FnMut.html' in chapter 'types/closure.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/types/../../core/ops/function/trait.FnMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.align_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.align_of_val.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.size_of_val.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.size_of_val.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.size_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.size_of.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.align_of.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.align_of.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Sized.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/alloc/layout/struct.Layout.html' in chapter 'type-layout.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/alloc/layout/struct.Layout.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.UnsafeCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.RefCell.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.RefCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/sync/atomic/index.html' in chapter 'interior-mutability.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/sync/atomic/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../nomicon/hrtb.html' in chapter 'subtyping.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/hrtb.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Unsize.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Unsize.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/trait.CoerceUnsized.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.CoerceUnsized.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/trait.Drop.html#tymethod.drop' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Drop.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ptr/fn.drop_in_place.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ptr/fn.drop_in_place.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.forget.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/struct.ManuallyDrop.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/struct.ManuallyDrop.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/mem/fn.forget.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Unsize.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Unsize.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/unsize/trait.CoerceUnsized.html' in chapter 'type-coercions.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/unsize/trait.CoerceUnsized.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/drop/trait.Drop.html#tymethod.drop' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/drop/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ptr/fn.drop_in_place.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ptr/fn.drop_in_place.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.forget.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/manually_drop/struct.ManuallyDrop.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/manually_drop/struct.ManuallyDrop.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/mem/fn.forget.html' in chapter 'destructors.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/mem/fn.forget.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/boxed/struct.Box.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/boxed/struct.Box.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/rc/struct.Rc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/rc/struct.Rc.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/sync/struct.Arc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/sync/struct.Arc.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/pin/struct.Pin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/pin/struct.Pin.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.UnsafeCell.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/struct.PhantomData.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/struct.PhantomData.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/boxed/struct.Box.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/rc/struct.Rc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/rc/struct.Rc.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/sync/struct.Arc.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/sync/struct.Arc.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/pin/struct.Pin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/pin/struct.Pin.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.UnsafeCell.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/struct.PhantomData.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/struct.PhantomData.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../nomicon/dropck.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/dropck.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cmp/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cmp/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/trait.Deref.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Deref.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/trait.DerefMut.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.DerefMut.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/ops/trait.Drop.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/ops/trait.Drop.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Copy.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Copy.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/clone/trait.Clone.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/clone/trait.Clone.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Send.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sync.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cmp/index.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cmp/index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/deref/trait.Deref.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/deref/trait.Deref.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/deref/trait.DerefMut.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/deref/trait.DerefMut.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ops/drop/trait.Drop.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ops/drop/trait.Drop.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Copy.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Copy.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/clone/trait.Clone.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/clone/trait.Clone.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Sync.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/process/trait.Termination.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/process/trait.Termination.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Send.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sync.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Unpin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Unpin.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/panic/trait.UnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/trait.UnwindSafe.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/panic/trait.RefUnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/trait.RefUnwindSafe.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/marker/trait.Sized.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/marker/trait.Sized.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Send.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Send.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Sync.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Sync.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Unpin.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Unpin.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/panic/unwind_safe/trait.UnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/panic/unwind_safe/trait.UnwindSafe.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/panic/unwind_safe/trait.RefUnwindSafe.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/panic/unwind_safe/trait.RefUnwindSafe.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/marker/trait.Sized.html' in chapter 'special-types-and-traits.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/marker/trait.Sized.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../items/enumerations.mdr' in chapter 'names/scopes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../items/enumerations.mdr' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/boxed/struct.Box.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../../alloc/boxed/struct.Box.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../alloc/boxed/struct.Box.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2015/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../core/prelude/rust_2015/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../core/prelude/rust_2015/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../../std/prelude/rust_2018/index.html' in chapter 'names/preludes.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/names/../../std/prelude/rust_2018/index.html' @@ -189,7 +183,7 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts' in chapter 'linkage.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../cargo/reference/environment-variables.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/arch/macro.asm.html' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/arch/macro.asm.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/arch/macro.global_asm.html' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/arch/macro.global_asm.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/fmt/index.html#syntax' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/fmt/index.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/fmt/index.html#syntax' in chapter 'inline-assembly.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/fmt/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/keyword.unsafe.html' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/keyword.unsafe.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/primitive.slice.html#method.get_unchecked' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.slice.html' @@ -197,15 +191,21 @@ expression: logs INFO mdbook_pandoc::preprocess: Failed to resolve link '../rustc/lints/listing/allowed-by-default.html#unsafe-op-in-unsafe-fn' in chapter 'unsafe-keyword.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../rustc/lints/listing/allowed-by-default.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../nomicon/index.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../nomicon/index.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/primitive.pointer.html#method.offset' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/primitive.pointer.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/cell/struct.UnsafeCell.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ptr/struct.NonNull.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ptr/struct.NonNull.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/num/index.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/num/index.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/panic/struct.PanicInfo.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/panic/struct.PanicInfo.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/cell/struct.UnsafeCell.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/cell/struct.UnsafeCell.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/boxed/struct.Box.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/boxed/struct.Box.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/boxed/struct.Box.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/boxed/struct.Box.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/ptr/non_null/struct.NonNull.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/ptr/non_null/struct.NonNull.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/num/nonzero/struct.NonZero.html' in chapter 'behavior-considered-undefined.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/num/nonzero/struct.NonZero.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/panic/panic_info/struct.PanicInfo.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/panic/panic_info/struct.PanicInfo.html' INFO mdbook_pandoc::preprocess: Failed to resolve link '../book/ch09-01-unrecoverable-errors-with-panic.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../book/ch09-01-unrecoverable-errors-with-panic.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/panic/fn.set_hook.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panic/fn.set_hook.html' - INFO mdbook_pandoc::preprocess: Failed to resolve link '../alloc/alloc/trait.GlobalAlloc.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../alloc/alloc/trait.GlobalAlloc.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../std/panicking/fn.set_hook.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../std/panicking/fn.set_hook.html' + INFO mdbook_pandoc::preprocess: Failed to resolve link '../core/alloc/global/trait.GlobalAlloc.html' in chapter 'runtime.md', linking to hosted HTML book at 'https://doc.rust-lang.org/reference/../core/alloc/global/trait.GlobalAlloc.html' +[WARNING] [makePDF] LaTeX Warning: Hyper reference + `book__pdf__src__destructorsmd__r-destructors.scope.nesting.function-body' + on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pdf__src__type-layoutmd__the-default-representation' on $PAGE undefined on input $LINE. diff --git a/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap b/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap index e9694a8..eecf53f 100644 --- a/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap +++ b/src/snapshots/mdbook_pandoc__tests__rustc_dev_guide.snap @@ -8,10 +8,10 @@ expression: logs WARN mdbook::preprocess::cmd: Command: mdbook-toc INFO mdbook::book: Running the pandoc backend INFO mdbook_pandoc: Processing redirects in [output.html.redirect] - INFO mdbook_pandoc::preprocess: Failed to resolve link '../toolstate.md' in chapter 'tests/ci.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/tests/../toolstate.md' WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Coinduction WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Coinduction - INFO mdbook_pandoc::preprocess: Failed to resolve link 'placeholder-ck' in chapter 'solve/opaque-types.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/solve/placeholder-ck' + INFO mdbook_pandoc::preprocess: Failed to resolve link './specialization.md' in chapter 'coherence.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/./specialization.md' + INFO mdbook_pandoc::preprocess: Failed to resolve link './specialization.md' in chapter 'coherence.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/./specialization.md' WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait @@ -23,7 +23,6 @@ expression: logs WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait WARN mdbook_pandoc::preprocess: Heading (level h5) converted to paragraph in chapter: Return Position Impl Trait In Trait - INFO mdbook_pandoc::preprocess: Failed to resolve link '../generics.md' in chapter 'appendix/background.md', linking to hosted HTML book at 'https://rustc-dev-guide.rust-lang.org/appendix/../generics.md' [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pandoc__pdf__src__appendix__glossarymd__ice' on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: Hyper reference @@ -31,6 +30,9 @@ expression: logs [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pandoc__pdf__src__tests__addingmd__explanatory_comment' on $PAGE undefined on input $LINE. +[WARNING] [makePDF] LaTeX Warning: Hyper reference + `book__pandoc__pdf__src__compiler-debuggingmd__rustc_-attributes' + on $PAGE undefined on input $LINE. [WARNING] [makePDF] LaTeX Warning: Hyper reference `book__pandoc__pdf__src__building__how-to-build-and-runmd__toolchain' on $PAGE undefined on input $LINE.