From 7b8aa78e240056531623c3071e6b3cafc02ece90 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 24 Nov 2024 01:36:54 -0800 Subject: [PATCH 1/2] Fix linkcheck - html_use_opensearch value must not have a trailing slash - Clean up comments --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 5bc2f084a2..4282d26b9f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -290,7 +290,7 @@ def patch_pygments_to_highlight_jsonschema(): # base URL from which the finished HTML is served. # Announce that we have an opensearch plugin # https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_use_opensearch -html_use_opensearch = "https://plonerestapi.readthedocs.org/" +html_use_opensearch = "https://plonerestapi.readthedocs.org" # This is the file name suffix for HTML files (e.g. ".xhtml"). From 9d4c34f9cd93300724ce05626dc62aed4dfa5441 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 24 Nov 2024 01:45:50 -0800 Subject: [PATCH 2/2] news --- news/1846.documentation | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/1846.documentation diff --git a/news/1846.documentation b/news/1846.documentation new file mode 100644 index 0000000000..d46a5b6816 --- /dev/null +++ b/news/1846.documentation @@ -0,0 +1 @@ +`html_use_opensearch` value must not have a trailing slash. Clean up comments. @stevepiercy