From b5b5fca036f82261543986f3c73e8fc3ec81d607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Kr=C3=A1tk=C3=BD?= Date: Thu, 21 Nov 2024 15:12:51 +0100 Subject: [PATCH] Add domains to linkcheck-anchor ignore list. --- docs-rtd/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs-rtd/conf.py b/docs-rtd/conf.py index d201f0d7..9942dba9 100644 --- a/docs-rtd/conf.py +++ b/docs-rtd/conf.py @@ -193,7 +193,12 @@ # A regex list of URLs where anchors are ignored by 'make linkcheck' -linkcheck_anchors_ignore_for_url = [r"https://github\.com/.*"] +linkcheck_anchors_ignore_for_url = [ + r"https://github\.com/.*", + r"https://juju\.is/.*", + r"https://matrix\.to/.*", + r"https://registry\.terraform\.io/.*", +] ########################