From: Rich Bennett Date: Wed, 13 Sep 2017 18:15:20 +0000 (-0400) Subject: Ignore localhost links in sphinx linkcheck builder X-Git-Tag: 1.0.0-Amsterdam~2251^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F12259%2F1;p=doc.git Ignore localhost links in sphinx linkcheck builder Change-Id: I2048e723c052f8a468f75b0abc9661320cf76380 Issue-ID: DOC-34 Signed-off-by: Rich Bennett --- diff --git a/docs/conf.py b/docs/conf.py index b75cab692..ceb28cad2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -366,3 +366,6 @@ epub_exclude_files = ['search.html'] # If false, no index is generated. #epub_use_index = True + +# Patterns to ignore in linkcheck builder +linkcheck_ignore = [r'http://localhost:\d+/']