From d78b0ca0c5c884c68b5a8fe2bb04b3fd3e9dc06f Mon Sep 17 00:00:00 2001 From: nodiscc Date: Tue, 5 Sep 2023 16:22:27 +0200 Subject: [PATCH] tools/sphinx: fix opensearch URL --- .hecat/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hecat/conf.py b/.hecat/conf.py index f1a76acfb6..60eeb258c7 100644 --- a/.hecat/conf.py +++ b/.hecat/conf.py @@ -12,7 +12,7 @@ html_show_sphinx = False html_show_search_summary = True html_copy_source = False html_show_copyright = True -html_use_opensearch = 'https://nodiscc.github.io/awesome-selfhosted-html-preview/' +html_use_opensearch = 'https://awesome-selfhosted.net/' html_favicon = '../_static/favicon.ico' html_logo = '../_static/logo.svg' extensions = ['myst_parser', 'sphinx_design']