Skip to content

Commit

Permalink
simplified linkcheck_ignore patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Jan 22, 2020
1 parent 13c6406 commit 21d2620
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@ def get_version():
''',
}
linkcheck_ignore = [
r'^https?\://127\.0\.0\.1.*',
r'^https?\://localhost.*',
r'^https?\://yourproject\.readthedocs\.io.*',
r'^https?\://docs\.example\.com.*',
r'^https?\://foo\.readthedocs\.io/projects.*',
r'^https?\://github\.com.+?#L\d+(-L\d+)?',
r'^https://$',
r'http://127\.0\.0\.1',
r'http://localhost',
r'https://yourproject\.readthedocs\.io',
r'https?://docs\.example\.com',
r'https://foo\.readthedocs\.io/projects',
r'https://github\.com.+?#L\d+',
r'https://$',
]


Expand Down

0 comments on commit 21d2620

Please sign in to comment.