From cd6ebf23edb1209c98b7d88b7167a4707e5372ef Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Tue, 24 Jan 2023 21:17:02 +0100 Subject: [PATCH] doc/conf: update extlinks syntax --- doc/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 4eda5ac..b1f29b8 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -129,8 +129,8 @@ # -- Sphinx.Ext.ExtLinks -------------------------------------------------- extlinks = { - 'ghrepo': ('https://github.com/%s', ''), - 'ghissue': ('https://github.com/hdl/constraints/issues/%s', 'issue #'), - 'ghpull': ('https://github.com/hdl/constraints/pull/%s', 'pull request #'), - 'ghsrc': ('https://github.com/hdl/constraints/blob/main/%s', ''), + 'ghrepo': ('https://github.com/%s', '%s'), + 'ghissue': ('https://github.com/hdl/constraints/issues/%s', 'issue #%s'), + 'ghpull': ('https://github.com/hdl/constraints/pull/%s', 'pull request #%s'), + 'ghsrc': ('https://github.com/hdl/constraints/blob/main/%s', '%s'), }