From 71dee6657338f12e6c8283a9ac7352416c72e5bf Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 17 Feb 2020 13:43:29 +0100 Subject: [PATCH] Make link_checker skip more sites --- blog/config.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/blog/config.toml b/blog/config.toml index f1838e2d..fa70baf3 100644 --- a/blog/config.toml +++ b/blog/config.toml @@ -14,8 +14,16 @@ languages = [ ignored_content = ["*/README.md"] [link_checker] +skip_prefixes = [ + "https://crates.io/crates", # see https://github.com/rust-lang/crates.io/issues/788 + "https://www.amd.com/system/files/TechDocs/", # seems to have problems with PDFs + "https://developer.apple.com/library/archive/qa/qa1118/_index.html", # results in a 401 (I don't know why) +] skip_anchor_prefixes = [ "https://github.com/", # see https://github.com/getzola/zola/issues/805 + "https://docs.rs/x86_64/0.1.2/src/", # source code highlight + "https://www.math.utah.edu/docs/info/ld_3.html", # see https://github.com/getzola/zola/issues/948 + "https://web.stanford.edu/class/cs140/projects/pintos/specs/freevga/vga/vgamem.htm", # see https://github.com/getzola/zola/issues/948 ] [extra]