diff options
author | joel <joel@web> | 2014-05-27 06:03:36 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-05-27 06:03:36 -0400 |
commit | 15f5f82e08e34a5d0e778e619be9b5d010d26318 (patch) | |
tree | 2dae5358679fae30fbbbf378bd56cea43fe6ff5f /doc/plugins/contrib | |
parent | 86726d352bb3f9ff50bfa0ec4369a53b9700539c (diff) | |
download | ikiwiki-15f5f82e08e34a5d0e778e619be9b5d010d26318.tar ikiwiki-15f5f82e08e34a5d0e778e619be9b5d010d26318.tar.gz |
Plugin: add new todo plugin
Diffstat (limited to 'doc/plugins/contrib')
-rw-r--r-- | doc/plugins/contrib/todo.mdwn | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/plugins/contrib/todo.mdwn b/doc/plugins/contrib/todo.mdwn new file mode 100644 index 000000000..d8ba05681 --- /dev/null +++ b/doc/plugins/contrib/todo.mdwn @@ -0,0 +1,17 @@ +[[!template id=plugin name=todo author="Joël Porquet"]] +[[!tag type/widget]] + +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. + +An example of a page marked as todo could be: + + \[[!todo deadline="3 April 1982"]] + # Title of what should be done for April 3, 1982 + blabla + +This plugin also provides ways to display pages marked as todo, and can even sort those pages by deadline dates: + + \[[!inline pages="* and todo() and !todo(done)" archive="yes" sort="todo(deadline)"]] + +The full documentation and source code can be found here: +<https://joel.porquet.org/wiki/hacking/ikiwiki_todo/> |