From 8184986bae00520f3a04bfd043fd06b426dc47b3 Mon Sep 17 00:00:00 2001 From: aidanfnv Date: Wed, 3 Dec 2025 09:33:26 -0800 Subject: [PATCH 1/3] Ignore .so files in linkcheck --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index cb700d7..ac9b5a2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -181,6 +181,7 @@ def setup(app): r"http://libllvm\.so.*", r"http://libLLVM\.so.*", r"http://slang\.so.*", + r"http://[^ ]+\.so.*", r'https://www\.shadertoy\.com/.*', ] linkcheck_report_timeouts_as_broken = True From e4c25427c92618faa5999c9973941fd561c4826b Mon Sep 17 00:00:00 2001 From: aidanfnv Date: Wed, 3 Dec 2025 09:51:55 -0800 Subject: [PATCH 2/3] Remove redundant .so filepaths from linkcheck list --- docs/conf.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index ac9b5a2..815f1b8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -178,9 +178,6 @@ def setup(app): linkcheck_ignore = [ r"https://github.com/your-name/.*", r"http://claude.ai/code", - r"http://libllvm\.so.*", - r"http://libLLVM\.so.*", - r"http://slang\.so.*", r"http://[^ ]+\.so.*", r'https://www\.shadertoy\.com/.*', ] From 5874a4965471b308497c44b7f29d93cb4693c537 Mon Sep 17 00:00:00 2001 From: aidanfnv Date: Wed, 3 Dec 2025 10:45:10 -0800 Subject: [PATCH 3/3] Fix regex pattern --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 815f1b8..8fe683c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -178,7 +178,7 @@ def setup(app): linkcheck_ignore = [ r"https://github.com/your-name/.*", r"http://claude.ai/code", - r"http://[^ ]+\.so.*", + r"http://[^\.]+\.so.*", r'https://www\.shadertoy\.com/.*', ] linkcheck_report_timeouts_as_broken = True