From 0da509737bd6e7439be4bc0faf335ef389920d7d Mon Sep 17 00:00:00 2001 From: Unai Martinez-Corral Date: Mon, 20 Feb 2023 18:10:52 +0100 Subject: [PATCH] docs/conf: update extlinks syntax Signed-off-by: Unai Martinez-Corral --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 945f0e8..ea7f8a0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -187,10 +187,10 @@ intersphinx_mapping = { # -- Sphinx.Ext.ExtLinks ----------------------------------------------------------------------------------------------- extlinks = { - 'wikipedia': ('https://en.wikipedia.org/wiki/%s', 'wikipedia:'), - 'gh': ('https://github.com/%s', 'gh:'), - 'ghsharp': ('https://github.com/chipsalliance/f4pga/issues/%s', '#'), - 'ghissue': ('https://github.com/chipsalliance/f4pga/issues/%s', 'issue #'), - 'ghpull': ('https://github.com/chipsalliance/f4pga/pull/%s', 'pull request #'), - 'ghsrc': ('https://github.com/chipsalliance/f4pga/blob/main/%s', '') + 'wikipedia': ('https://en.wikipedia.org/wiki/%s', 'wikipedia: %s'), + 'gh': ('https://github.com/%s', 'gh:%s'), + 'ghsharp': ('https://github.com/chipsalliance/f4pga/issues/%s', '#%s'), + 'ghissue': ('https://github.com/chipsalliance/f4pga/issues/%s', 'issue #%s'), + 'ghpull': ('https://github.com/chipsalliance/f4pga/pull/%s', 'pull request #%s'), + 'ghsrc': ('https://github.com/chipsalliance/f4pga/blob/main/%s', '%s') }