Todos¶
The {todolist} and {todo} blocks are used to create reminder entries for tasks to be completed in production.
To enable the display of todos, the following settings have to be added to the conf.py:
todo_include_todos = True
todo_link_only = True
Single todo¶
The {todo} block generates a single todo entry and automatically adds it to any {todolist} blocks across the
site.
:::{todo} We need to add a better example here.
:::
Todo
We need to add a better example here.
List of todos¶
The list of todos is generated using the {todolist} block. This is an empty block and all its content will be
automatically generated based on the {todo} blocks used in the project:
:::{todolist}
:::
Todo
This is the first todo.
Todo
This is the second todo.
Todo
We need to add a better example here.