diff --git a/conf.py b/conf.py index be11d82f..e429126e 100644 --- a/conf.py +++ b/conf.py @@ -89,6 +89,7 @@ linkcheck_anchors_ignore_for_url = [ r'https://github\.com/.*' ] +linkcheck_anchors_ignore_for_url.extend(custom_linkcheck_anchors_ignore_for_url) ############################################################ ### Styling diff --git a/custom_conf.py b/custom_conf.py index e8487a0b..8c8d7bc2 100644 --- a/custom_conf.py +++ b/custom_conf.py @@ -102,6 +102,12 @@ 'http://127.0.0.1:8000' ] +# Pages on which to ignore anchors +# (This list will be appended to linkcheck_anchors_ignore_for_url) + +custom_linkcheck_anchors_ignore_for_url = [ + ] + ############################################################ ### Additions to default configuration ############################################################