From 424ba035b9d5ee4070df09864ac83d2ecf018766 Mon Sep 17 00:00:00 2001 From: Sebastian Wick Date: Mon, 22 Dec 2025 18:06:48 +0100 Subject: [PATCH] conf: Ignore all FDO urls for linkcheck Broken in GitHub actions, possibly FDO is blocking it: 418 Client Error: I'm a teapot for url: ... --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index b398288e..99c52abb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -163,6 +163,7 @@ linkcheck_ignore = [ r"https://www\.gnu\.org/.*", # Broken in GitHub actions + r"https://www\.freedesktop\.org/.*", # Uses Anubis so get "418 Client Error: I'm a teapot for url: ..." ] # -- Options for manual page output ---------------------------------------