From 353cf074189653b0ea0f8e45f98fb597e44ad385 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 17 May 2010 16:18:46 -0400 Subject: [PATCH] Add Sphinx extensions sphinx.ext.intersphinx sphinx.ext.pngmath. * intersphinx allows documentation linking between known Sphinx packages. http://sphinx.pocoo.org/ext/intersphinx.html * pngmath allows LaTeX inclusion via the math directive http://sphinx.pocoo.org/ext/math.html Also reorder extension list following: sphinx.* alphabetically everything else aphabetically --- doc/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 43786fd..1f1de4d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -26,7 +26,8 @@ import hooke # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', - 'sphinx.ext.doctest', 'sphinx.ext.coverage', + 'sphinx.ext.coverage', 'sphinx.ext.doctest', + 'sphinx.ext.intersphinx', 'sphinx.ext.pngmath', 'numpydoc'] # Add any paths that contain templates here, relative to this directory. -- 2.26.2