Skip to content

Commit

Permalink
Sphinx linkcheck: Ignore generated URLs and internal anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
funkyfuture committed Jul 22, 2023
1 parent bb9f42b commit ba91d44
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,11 @@
# -- Options for doclinks extension --------------------------------------------

linkcheck_ignore = [
r'https://github.com/pyeve/cerberus/issues/\d+',
r'https://groups.google.com/forum/#!forum/.*'
r"^#",
r"https://github.com/pyeve/cerberus/(issues|pull)/\d+",
r"https://groups.google.com/forum/#!forum/.*",
r"https://docs.python.org/(2|3)/glossary.html#.*",
r"https://docs.python.org/(2|3)/library/.*",
]
linkcheck_anchors = True

Expand Down

0 comments on commit ba91d44

Please sign in to comment.