From: Guillaume Lambert Date: Fri, 23 Apr 2021 13:49:31 +0000 (+0200) Subject: Fix some regex in docs/conf.py X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=1becaf06d0918c4fc9d51b7f717e6dd7c89e1d82;p=docs.git Fix some regex in docs/conf.py Signed-off-by: Guillaume Lambert Change-Id: I847bcbb0744f7049097cdb840f0835cc9af46d9b --- diff --git a/docs/conf.py b/docs/conf.py index ab4590aa8..7b80e1a6c 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ linkcheck_ignore = [ # URL returns a 403 Forbidden 'https://www.osgi.org', # Ignore anchors on github.com because linkcheck fails on them - '^http[s]://github.com/.*#', + '^https?://github.com/.*#', # Ignore webchat anchors because '#' is not an anchor for this app 'https://webchat.freenode.net/#', # Ignore google docs anchors @@ -68,7 +68,7 @@ linkcheck_ignore = [ '../_static/OpenDaylight-Technical-Charter-LFN-Projects-LLC-FINAL.pdf', # Ignore IETF URLs often not reachable from Jenkins minions # because of hosting connectivity issues - '^http[s]://tools.ietf.org/html/.*', + '^https?://tools.ietf.org/html/.*', ] linkcheck_timeout = 300