From 21d2620a0cb6c7cb0e68aaaf45c8b21c61b9de70 Mon Sep 17 00:00:00 2001 From: s-weigand Date: Wed, 22 Jan 2020 13:17:22 +0100 Subject: [PATCH] simplified linkcheck_ignore patterns --- docs/conf.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 383750c8c12..b1ed3960e82 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -104,13 +104,13 @@ def get_version(): ''', } linkcheck_ignore = [ - r'^https?\://127\.0\.0\.1.*', - r'^https?\://localhost.*', - r'^https?\://yourproject\.readthedocs\.io.*', - r'^https?\://docs\.example\.com.*', - r'^https?\://foo\.readthedocs\.io/projects.*', - r'^https?\://github\.com.+?#L\d+(-L\d+)?', - r'^https://$', + r'http://127\.0\.0\.1', + r'http://localhost', + r'https://yourproject\.readthedocs\.io', + r'https?://docs\.example\.com', + r'https://foo\.readthedocs\.io/projects', + r'https://github\.com.+?#L\d+', + r'https://$', ]