Skip to content

Commit 2106f47

Browse files
committedDec 31, 2022
Add missing placeholders to extlinks captions
Sphinx 6.0.0 changed extlinks to always require placeholders in link captions. See sphinx-doc/sphinx@93cf1a5
1 parent cc7abe3 commit 2106f47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎docs/conf.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818

1919
# External links to the bug tracker and other sites.
2020
extlinks = {
21-
'bug': ('https://github.com/beetbox/beets/issues/%s', '#'),
22-
'user': ('https://github.com/%s', ''),
23-
'pypi': ('https://pypi.org/project/%s/', ''),
24-
'stdlib': ('https://docs.python.org/3/library/%s.html', ''),
21+
'bug': ('https://github.com/beetbox/beets/issues/%s', '#%s'),
22+
'user': ('https://github.com/%s', '%s'),
23+
'pypi': ('https://pypi.org/project/%s/', '%s'),
24+
'stdlib': ('https://docs.python.org/3/library/%s.html', '%s'),
2525
}
2626

2727
linkcheck_ignore = [

0 commit comments

Comments
 (0)