From ce2bb61dbeba5c7dbdda000c4f7973909358fa19 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Mon, 4 Aug 2025 17:00:53 +0200 Subject: [PATCH] docs/linkcheck: ignore crates.io links as it also blocks non-browsers Part-of: --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 637cf60292b..c8463ba1349 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -144,6 +144,7 @@ linkcheck_ignore = [ r'https://.*\.sourceforge\.net/.*', # blocking the linkcheck user-agent r'https://stackoverflow.com/.*', # blocking the linkcheck user-agent r'https://(www|dev)\.vulkan\.org/.*', # blocking the linkcheck user-agent + r'https://crates.io/.*', # blocking the linkcheck user-agent ] linkcheck_exclude_documents = [r'relnotes/.*']