From 2f46bccb7b66ab4d0fc83c9dd62e9461eb346ec3 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 24 May 2023 13:06:00 +0200 Subject: [PATCH] fix github link templates missing `%s` raises error on sphinx 6 --- docs/source/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index ec8294da..2dcb0861 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,9 +29,9 @@ default_role = "literal" exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] templates_path = ["_templates"] extlinks = { - "issue": ("https://github.com/jupyterhub/repo2docker/issues/%s", "Issue #"), - "pr": ("https://github.com/jupyterhub/repo2docker/pull/%s", "PR #"), - "user": ("https://github.com/%s", "@"), + "issue": ("https://github.com/jupyterhub/repo2docker/issues/%s", "Issue #%s"), + "pr": ("https://github.com/jupyterhub/repo2docker/pull/%s", "PR #%s"), + "user": ("https://github.com/%s", "@%s"), }