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:
|
|
|
|
|
2010-04-17 03:39:51 -05:00
|
|
|
.. rst:directive:: todo
|
2008-11-09 12:46:32 -06:00
|
|
|
|
2010-04-17 03:39:51 -05:00
|
|
|
Use this directive like, for example, :rst:dir:`note`.
|
2008-11-09 12:46:32 -06:00
|
|
|
|
2014-06-18 11:34:28 -05:00
|
|
|
It will only show up in the output if :confval:`todo_include_todos` is
|
|
|
|
``True``.
|
2008-11-09 12:46:32 -06:00
|
|
|
|
2015-11-28 21:02:02 -06:00
|
|
|
.. versionadded:: 1.3.2
|
2019-05-21 09:13:41 -05:00
|
|
|
This directive supports an ``class`` option that determines the class
|
|
|
|
attribute for HTML output. If not given, the class defaults to
|
|
|
|
``admonition-todo``.
|
2015-11-28 21:02:02 -06:00
|
|
|
|
2008-11-09 12:46:32 -06:00
|
|
|
|
2010-04-17 03:39:51 -05: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
|
2014-06-18 11:34:28 -05:00
|
|
|
documentation, if :confval:`todo_include_todos` is ``True``.
|
2008-11-09 12:46:32 -06:00
|
|
|
|
2009-01-10 15:18:18 -06:00
|
|
|
|
2018-06-08 11:27:13 -05:00
|
|
|
These can be configured as seen below.
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
2009-01-10 15:18:18 -06:00
|
|
|
|
2008-11-09 12:46:32 -06:00
|
|
|
.. confval:: todo_include_todos
|
|
|
|
|
2014-06-18 10:53:25 -05:00
|
|
|
If this is ``True``, :rst:dir:`todo` and :rst:dir:`todolist` produce output,
|
|
|
|
else they produce nothing. The default is ``False``.
|
2016-02-08 08:31:02 -06:00
|
|
|
|
2016-07-02 05:15:06 -05:00
|
|
|
.. confval:: todo_emit_warnings
|
|
|
|
|
|
|
|
If this is ``True``, :rst:dir:`todo` emits a warning for each TODO entries.
|
|
|
|
The default is ``False``.
|
|
|
|
|
|
|
|
.. versionadded:: 1.5
|
|
|
|
|
2016-02-08 08:31:02 -06:00
|
|
|
.. confval:: todo_link_only
|
|
|
|
|
2019-05-21 09:13:41 -05:00
|
|
|
If this is ``True``, :rst:dir:`todolist` produce output without file path and
|
|
|
|
line, The default is ``False``.
|
2016-02-08 08:31:02 -06:00
|
|
|
|
|
|
|
.. versionadded:: 1.4
|
|
|
|
|
2016-07-02 05:15:06 -05:00
|
|
|
autodoc provides the following an additional event:
|
|
|
|
|
|
|
|
.. event:: todo-defined (app, node)
|
|
|
|
|
|
|
|
.. versionadded:: 1.5
|
|
|
|
|
2019-05-21 09:13:41 -05:00
|
|
|
Emitted when a todo is defined. *node* is the defined
|
|
|
|
``sphinx.ext.todo.todo_node`` node.
|