diff options
author | Rich Bennett <rb2745@att.com> | 2017-09-13 14:15:20 -0400 |
---|---|---|
committer | Rich Bennett <rb2745@att.com> | 2017-09-13 14:16:50 -0400 |
commit | 927141fd6348730fbf317703db469e4dcb6f1805 (patch) | |
tree | ce7d8762b77905d7309ab2f9ed825296e84b88cf | |
parent | 505add9e70553849c52a1711f3024c44271eae41 (diff) |
Ignore localhost links in sphinx linkcheck builder
Change-Id: I2048e723c052f8a468f75b0abc9661320cf76380
Issue-ID: DOC-34
Signed-off-by: Rich Bennett <rb2745@att.com>
-rw-r--r-- | docs/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
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+/'] |