From 25cf97cb69b7d9916ffcac0e98463412b1648678 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 31 Jul 2010 18:11:35 +0200 Subject: [PATCH] docs: Turn on extlinks extension --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 0a92ba7c..98b1e2c1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ import mopidy # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', 'autodoc_private_members', 'sphinx.ext.graphviz', 'sphinx.ext.inheritance_diagram', - 'sphinx.ext.viewcode'] + 'sphinx.ext.extlinks', 'sphinx.ext.viewcode'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -199,3 +199,5 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + +extlinks = {'issue': ('http://github.com/jodal/mopidy/issues#issue/%s', 'GH-')}