diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-08-19 01:58:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-19 01:58:44 -0700 |
| commit | df8598a2658632f709a64e8076cce02ca49de8e6 (patch) | |
| tree | 84a74bb86aadd6b64ee31db6e1fd850882d31d80 /docs/conf.py | |
| parent | 5488da0d165468199f0d07a2ca579b86617fad72 (diff) | |
| parent | 9ce94ffb2ee4e09d106bc490fe89f6e9c1b555f4 (diff) | |
| download | pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.tar.gz pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.tar.bz2 pyramid-df8598a2658632f709a64e8076cce02ca49de8e6.zip | |
Merge pull request #3331 from stevepiercy/exclude-local-linkcheck
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', +] |
