From 1177dbd3013144b8d9054ddb5f56917267b9b6b0 Mon Sep 17 00:00:00 2001 From: niksirbi Date: Tue, 14 Nov 2023 15:59:13 +0000 Subject: [PATCH] ignore problematic links during linkcheck --- docs/source/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f7f2834..777fbd9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -77,7 +77,13 @@ ] # Ignore certain URLs from being checked -linkcheck_ignore = ["https://neuromorpho.org/"] +linkcheck_ignore = [ + "https://neuromorpho.org/", + "https://wiki.ucl.ac.uk/", # ignore everything on the internal wiki + "https://linux.die.net/man/1/rsync", + "https://www.uclb.com/", +] +linkcheck_retries = 2 # -- Options for HTML output -------------------------------------------------