From 3af313e165215696af899e772f47bf7c27873ae3 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 31 Dec 2022 11:12:38 -0800 Subject: [PATCH] Fix for Sphinx extlinks warning, closes #1972 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index f2d764c5..c25d8a95 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -34,7 +34,7 @@ extensions = ["sphinx.ext.extlinks", "sphinx.ext.autodoc", "sphinx_copybutton"] extlinks = { - "issue": ("https://github.com/simonw/datasette/issues/%s", "#"), + "issue": ("https://github.com/simonw/datasette/issues/%s", "#%s"), } # Add any paths that contain templates here, relative to this directory.