diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-08-19 01:48:52 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-08-19 01:48:52 -0700 |
| commit | 9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4 (patch) | |
| tree | 84a74bb86aadd6b64ee31db6e1fd850882d31d80 /docs/conf.py | |
| parent | 5488da0d165468199f0d07a2ca579b86617fad72 (diff) | |
| download | pyramid-9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4.tar.gz pyramid-9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4.tar.bz2 pyramid-9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4.zip | |
Fix broken links from linkcheck, exclude localhost from check
Diffstat (limited to 'docs/conf.py')
| -rw-r--r-- | docs/conf.py | 8 |
1 files changed, 8 insertions, 0 deletions
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', +] |
