mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
Fun with Sphinx extlinks
This commit is contained in:
parent
a3a6c01731
commit
da1624def7
2 changed files with 8 additions and 5 deletions
|
|
@ -52,7 +52,7 @@ Fixes:
|
|||
metadata.
|
||||
* :doc:`/plugins/discogs`: Authenticate with the Discogs server. The plugin
|
||||
now requires a Discogs account due to new API restrictions. Thanks to
|
||||
multikatt.
|
||||
:user:`multikatt`. :bug:`1027`, :bug:`1040`
|
||||
|
||||
|
||||
1.3.8 (September 17, 2014)
|
||||
|
|
|
|||
11
docs/conf.py
11
docs/conf.py
|
|
@ -2,7 +2,7 @@ AUTHOR = u'Adrian Sampson'
|
|||
|
||||
# General configuration
|
||||
|
||||
extensions = ['sphinx.ext.autodoc']
|
||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks']
|
||||
|
||||
exclude_patterns = ['_build']
|
||||
source_suffix = '.rst'
|
||||
|
|
@ -16,20 +16,23 @@ release = '1.3.9'
|
|||
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
# Options for HTML output
|
||||
# External links to the bug tracker.
|
||||
extlinks = {
|
||||
'bug': ('https://github.com/sampsyo/beets/issues/%s', '#'),
|
||||
'user': ('https://github.com/%s', ''),
|
||||
}
|
||||
|
||||
# Options for HTML output
|
||||
html_theme = 'default'
|
||||
htmlhelp_basename = 'beetsdoc'
|
||||
|
||||
# Options for LaTeX output
|
||||
|
||||
latex_documents = [
|
||||
('index', 'beets.tex', u'beets Documentation',
|
||||
AUTHOR, 'manual'),
|
||||
]
|
||||
|
||||
# Options for manual page output
|
||||
|
||||
man_pages = [
|
||||
('reference/cli', 'beet', u'music tagger and library organizer',
|
||||
[AUTHOR], 1),
|
||||
|
|
|
|||
Loading…
Reference in a new issue