From 7ca4cb3698cc36739ce86847d5bcd09fca39a42a Mon Sep 17 00:00:00 2001 From: Jan-Niklas Burfeind Date: Mon, 17 Apr 2023 16:23:15 +0200 Subject: [PATCH] docs: use linkcheck_ignore for unreachable links Config Mode - http://192.168.1.1 (not existing) anchors on hackint used to join channels - https://webirc.hackint.org/# --- docs/conf.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 7756759e..801bb4be 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,6 +71,13 @@ pygments_style = None # Don't highlight code blocks unless requested explicitly highlight_language = 'none' +# Ignore links to the config mode, as well as anchors on on hackint, which are +# used to mark channel names and do not exist. Regular links are not effected. +linkcheck_ignore = [ + 'http://192.168.1.1', + 'https://webirc.hackint.org/#' +] + # -- Options for HTML output -------------------------------------------------