Merge pull request #2866 from AiyionPrime/fix-docs-make-linkcheck

docs: use linkcheck_ignore for unreachable links
This commit is contained in:
David Bauer 2023-04-17 19:28:29 +02:00 committed by GitHub
commit d1b215aeec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 -------------------------------------------------