sphinx/doc/ext/todo.rst

36 lines
1.0 KiB
ReStructuredText
Raw Normal View History

2008-11-09 12:46:32 -06:00
: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:
.. rst:directive:: todo
2008-11-09 12:46:32 -06:00
Use this directive like, for example, :rst:dir:`note`.
2008-11-09 12:46:32 -06:00
It will only show up in the output if :confval:`todo_include_todos` is
``True``.
2008-11-09 12:46:32 -06:00
.. versionadded:: 1.3.2
This directive supports an ``class`` option that determines the class attribute
for HTML output. If not given, the class defaults to ``admonition-todo``.
2008-11-09 12:46:32 -06:00
.. rst:directive:: todolist
2008-11-09 12:46:32 -06:00
This directive is replaced by a list of all todo directives in the whole
documentation, if :confval:`todo_include_todos` is ``True``.
2008-11-09 12:46:32 -06:00
2008-11-09 12:46:32 -06:00
There is also an additional config value:
2008-11-09 12:46:32 -06:00
.. confval:: todo_include_todos
If this is ``True``, :rst:dir:`todo` and :rst:dir:`todolist` produce output,
else they produce nothing. The default is ``False``.