From 1ab644d613fb06669b97c509e4b093a24d1cd44a Mon Sep 17 00:00:00 2001 From: Catherine Date: Mon, 19 Aug 2024 08:30:16 +0000 Subject: [PATCH] manual: exempt GitHub from anchor checking as a whole. --- docs/manual/src/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/src/conf.py b/docs/manual/src/conf.py index 76a4e0623..293008cc6 100644 --- a/docs/manual/src/conf.py +++ b/docs/manual/src/conf.py @@ -86,6 +86,6 @@ linkcheck_anchors_ignore_for_url = [ r"^https://matrix\.to/", r"^https://web\.libera\.chat/", - # React page with README content included as a JSON payload. - r"^https://github\.com/[^/]+/[^/]+/$", + # GitHub is a React-based SPA; even README content is included as a JSON payload. + r"^https://github\.com/", ]