From 1ca5b6f6ba2f33e1372ac44036bf7434c48ccbda Mon Sep 17 00:00:00 2001 From: Laurence Isla Date: Tue, 21 May 2024 16:46:57 -0500 Subject: [PATCH] docs: ignore linkcheck for blog.frankel.ch --- docs/conf.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index faca3eb06..837b9e589 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -295,9 +295,13 @@ def setup(app): # taken from https://github.com/sphinx-doc/sphinx/blob/82dad44e5bd3776ecb6fd8ded656bc8151d0e63d/sphinx/util/requests.py#L42 user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0" -# TODO: stackoverflow and patreon only returns 403 right now. We might need to come back later to check whether that's -# a permanent issue or not. -linkcheck_ignore = [r"https://stackoverflow.com/", r"https://www.patreon.com/postgrest"] +# TODO: these pages are returning 403 right now. Verify if they can be fixed by addressing the issue: +# https://github.com/PostgREST/postgrest/issues/3544 +linkcheck_ignore = [ + r"https://stackoverflow.com/", + r"https://www.patreon.com/postgrest", + r"https://blog.frankel.ch/poor-man-api", +] # sphinx-tabs configuration sphinx_tabs_disable_tab_closing = True