From c0a1865a08d2ace8aecb6fe2c443cf1584daa114 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Wed, 18 Mar 2026 13:18:50 -0600 Subject: [PATCH 1/3] ignore Zotero links for the link checker --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index b51659491..357ccf451 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -237,6 +237,7 @@ def __getattr__(cls, name): r"https://docs.xarray.dev/*", r"https://seatstandards.org/*", r"https://healpix.sourceforge.io/*", + r"https://zenodo.org/*", # More URLs as needed ] From ddaf833df6035024daf04f4140cd46c2406ea2c6 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Wed, 18 Mar 2026 13:50:56 -0600 Subject: [PATCH 2/3] Ignore additional Zenodo URLs --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 357ccf451..70b4c9d17 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -238,6 +238,7 @@ def __getattr__(cls, name): r"https://seatstandards.org/*", r"https://healpix.sourceforge.io/*", r"https://zenodo.org/*", + r"https://doi.org/*zenodo*", # More URLs as needed ] From fd719b04b8e95589dfa092cba08f1d8de92ce0c3 Mon Sep 17 00:00:00 2001 From: Katelyn FitzGerald <7872563+kafitzgerald@users.noreply.github.com> Date: Wed, 18 Mar 2026 14:32:18 -0600 Subject: [PATCH 3/3] fix URL --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 70b4c9d17..c76f98669 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -238,7 +238,7 @@ def __getattr__(cls, name): r"https://seatstandards.org/*", r"https://healpix.sourceforge.io/*", r"https://zenodo.org/*", - r"https://doi.org/*zenodo*", + r"https://doi.org/10.5281/zenodo*", # More URLs as needed ]