From 56d8e62ce1d0d989a3f4ef2bf4e2886921f30a57 Mon Sep 17 00:00:00 2001 From: Michael Hanke Date: Sun, 2 Jan 2011 14:11:10 -0500 Subject: [PATCH] Enable TODO items in sphinx. --- sphinx/conf.py | 6 +++++- sphinx/todo.rst | 13 +++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 sphinx/todo.rst diff --git a/sphinx/conf.py b/sphinx/conf.py index 0bdb259..1e8818d 100644 --- a/sphinx/conf.py +++ b/sphinx/conf.py @@ -43,7 +43,11 @@ def artworkdir(): # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. #extensions = [] sys.path.append(os.path.abspath('.')) -extensions = ['sphinxext.quote'] +extensions = ['sphinxext.quote', + 'sphinx.ext.todo'] + +# show todo items +todo_include_todos = True # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/sphinx/todo.rst b/sphinx/todo.rst new file mode 100644 index 0000000..f54c10f --- /dev/null +++ b/sphinx/todo.rst @@ -0,0 +1,13 @@ +.. -*- mode: rst; fill-column: 78 -*- +.. ex: set sts=4 ts=4 sw=4 et tw=79: + +.. _todo: + +************ +The Big TODO +************ + +This is a comprehensive list of all ToDo items documented on the NeuroDebian +website. + +.. todolist:: -- 2.39.2