diff options
| author | Georg Brandl <georg@python.org> | 2009-09-04 00:16:34 +0200 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2009-09-04 00:16:34 +0200 |
| commit | df68eadcfd963e1e9e040f2341aa9c54858bd693 (patch) | |
| tree | 0510dca026db5036ea49d4cb46afcf47f4560d49 /doc/conf.py | |
| parent | 06555961a3dbeca2a124f965f484c80b230e8ce9 (diff) | |
| parent | 3a597d41609bbf89dabe93676453d16e5e4664d7 (diff) | |
| download | sphinx-df68eadcfd963e1e9e040f2341aa9c54858bd693.tar.gz | |
merge with 0.6
Diffstat (limited to 'doc/conf.py')
| -rw-r--r-- | doc/conf.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py index e1a48aa2..e3952a0b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -6,7 +6,10 @@ import sys, os, re # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.addons.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', + 'sphinx.ext.autosummary'] + +extlinks = {'issue': ('http://bugs.python.org/issue', 'issue ')} # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -71,7 +74,7 @@ latex_logo = '_static/sphinx.png' # Additional stuff for the LaTeX preamble. latex_elements = { - 'fontpkg': '\\usepackage{palatino}' + 'fontpkg': '\\usepackage{palatino}', } # Put TODOs into the output. |
