summaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-11-09 19:46:32 +0100
committerGeorg Brandl <georg@python.org>2008-11-09 19:46:32 +0100
commit26535b3b1d30cf3569410e5dd1be0e64e801136f (patch)
tree90fcb7363bc6819022f3e4fbfe308373749cf3f7 /doc/conf.py
parent5867989234084f7192dc694f01f906057ca16ab2 (diff)
downloadsphinx-26535b3b1d30cf3569410e5dd1be0e64e801136f.tar.gz
Add todo extension.
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py
index ca30ad91..61ff10e2 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -21,7 +21,7 @@ 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']
+extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -134,6 +134,12 @@ latex_elements = {
#latex_appendices = []
+# Extension options
+# -----------------
+
+todo_include_todos = True
+
+
# Extension interface
# -------------------