From 927141fd6348730fbf317703db469e4dcb6f1805 Mon Sep 17 00:00:00 2001 From: Rich Bennett Date: Wed, 13 Sep 2017 14:15:20 -0400 Subject: [PATCH] Ignore localhost links in sphinx linkcheck builder Change-Id: I2048e723c052f8a468f75b0abc9661320cf76380 Issue-ID: DOC-34 Signed-off-by: Rich Bennett --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) 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+/'] -- 2.16.6