We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
linkcheck_anchors_ignore
1 parent 16e322d commit c257742Copy full SHA for c257742
docs/conf.py
@@ -132,6 +132,13 @@
132
r'^https://matrix\.to/#', # these render fully on front-end from anchors
133
r'^https://stackoverflow\.com/', # these generate HTTP 403 Forbidden
134
]
135
+linkcheck_anchors_ignore = [
136
+ r'^!', # default
137
+ # ignore anchors that start with a '/', e.g. Wikipedia media files:
138
+ # https://en.wikipedia.org/wiki/Walrus#/media/File:Pacific_Walrus_-_Bull_(8247646168).jpg
139
+ r'\/.*',
140
+ r'issuecomment-\d+', # GitHub comments
141
+]
142
linkcheck_workers = 25
143
144
# -- Options for sphinx.ext.autosectionlabel extension -----------------------
0 commit comments