From 9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 19 Aug 2018 01:48:52 -0700 Subject: Fix broken links from linkcheck, exclude localhost from check --- docs/conf.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'docs/conf.py') diff --git a/docs/conf.py b/docs/conf.py index 075345d8c..8fe7108ff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -435,3 +435,11 @@ epub_exclude_files = ['_static/opensearch.xml', '_static/doctools.js', epub_tocdepth = 3 # For a list of all settings, visit http://sphinx-doc.org/config.html + +# -- Options for linkcheck builder ------------------------------------------- + +# List of items to ignore when running linkcheck +linkcheck_ignore = [ + r'http://localhost:\d+', + r'http://localhost', +] -- cgit v1.2.3