diff options
author | Unai Martinez-Corral <unai.martinezcorral@ehu.eus> | 2023-02-25 17:24:42 +0100 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2023-02-25 22:43:23 +0000 |
commit | fea066d51d3efc250bc9f73ec91efb45153dc176 (patch) | |
tree | cf892c2220dbc5d72879f34e73c30998eed36366 /doc | |
parent | 7a23a0d887d26650a8d293eea8125ec978ac81a9 (diff) | |
download | ghdl-fea066d51d3efc250bc9f73ec91efb45153dc176.tar.gz ghdl-fea066d51d3efc250bc9f73ec91efb45153dc176.tar.bz2 ghdl-fea066d51d3efc250bc9f73ec91efb45153dc176.zip |
doc/conf: update extlinks syntax
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/conf.py b/doc/conf.py index b47b2ba72..477864f8c 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -249,11 +249,11 @@ coverage_show_missing_items = True # Sphinx.Ext.ExtLinks # ============================================================================== extlinks = { - 'wikipedia': ('https://en.wikipedia.org/wiki/%s', ''), - 'ghdlsharp': ('https://github.com/ghdl/ghdl/issues/%s', '#'), - 'ghdlissue': ('https://github.com/ghdl/ghdl/issues/%s', 'issue #'), - 'ghdlpull': ('https://github.com/ghdl/ghdl/pull/%s', 'pull request #'), - 'ghdlsrc': ('https://github.com/ghdl/ghdl/blob/master/src/%s', '') + 'wikipedia': ('https://en.wikipedia.org/wiki/%s', 'w:%s'), + 'ghdlsharp': ('https://github.com/ghdl/ghdl/issues/%s', '#%s'), + 'ghdlissue': ('https://github.com/ghdl/ghdl/issues/%s', 'issue #%s'), + 'ghdlpull': ('https://github.com/ghdl/ghdl/pull/%s', 'pull request #%s'), + 'ghdlsrc': ('https://github.com/ghdl/ghdl/blob/master/src/%s', '%s') } |