]> sipb.mit.edu Git - ikiwiki.git/blob - doc/plugins/contrib/todo.mdwn
Change Projects link to point to projects DB
[ikiwiki.git] / doc / plugins / contrib / todo.mdwn
1 [[!template id=plugin name=todo author="Joël Porquet"]]
2 [[!tag type/widget]]
3
4 This plugin provides the todo [[ikiwiki/directive]], which enables a page to be marked as a todo page. Additionally a deadline date can be provided.
5
6 An example of a page marked as todo could be:
7
8     \[[!todo deadline="3 April 1982"]]
9     # Title of what should be done for April 3, 1982
10     blabla
11
12 This plugin also provides ways to display pages marked as todo, and can even sort those pages by deadline dates:
13
14     \[[!inline pages="* and todo() and !todo(done)" archive="yes" sort="todo(deadline)"]]
15
16 The full documentation and source code can be found here:
17 <https://joel.porquet.org/wiki/hacking/ikiwiki_todo/>