diff options
| author | Georg Brandl <georg@python.org> | 2008-11-09 19:46:32 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2008-11-09 19:46:32 +0100 |
| commit | 26535b3b1d30cf3569410e5dd1be0e64e801136f (patch) | |
| tree | 90fcb7363bc6819022f3e4fbfe308373749cf3f7 /doc/ext/todo.rst | |
| parent | 5867989234084f7192dc694f01f906057ca16ab2 (diff) | |
| download | sphinx-26535b3b1d30cf3569410e5dd1be0e64e801136f.tar.gz | |
Add todo extension.
Diffstat (limited to 'doc/ext/todo.rst')
| -rw-r--r-- | doc/ext/todo.rst | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/ext/todo.rst b/doc/ext/todo.rst new file mode 100644 index 00000000..7bc65a02 --- /dev/null +++ b/doc/ext/todo.rst @@ -0,0 +1,30 @@ +:mod:`sphinx.ext.todo` -- Support for todo items +================================================ + +.. module:: sphinx.ext.todo + :synopsis: Allow inserting todo items into documents. +.. moduleauthor:: Daniel Bültmann + +.. versionadded:: 0.5 + +There are two additional directives when using this extension: + +.. directive:: todo + + Use this directive like, for example, :dir:`note`. + + It will only show up in the output if :confval:`todo_include_todos` is true. + + +.. directive:: todolist + + This directive is replaced by a list of all todo directives in the whole + documentation, if :confval:`todo_include_todos` is true. + + +There is also an additional config value: + +.. confval:: todo_include_todos + + If this is ``True``, :dir:`todo` and :dir:`todolist` produce output, else + they produce nothing. The default is ``False``. |
