--- README for "todotag" plugin version 0.0.2 ---
This plugin will map a lexer under the "todo" tag name.
The text between the todo tags will be pretty printed.
--- Installation ---
Put todo.zip in your {wikihome}/plugins directory and restart the webapp context
or the server.
--- Usage example ---
Inserting this in a topic body:
[]Move somewhere else[]
will be translated to the following HTML string:
TODO
Move somewhere else
You can also mark a todo as DONE:
[]done: Move somewhere else[]
will be translated to the following HTML string:
TODO
done: Move somewhere else
Individual styles for todo.tag and todo.task can be specified in the
{wikihome}/StyleSheet.txt file by adding lines like the following:
=== snip ===
.todo-tag {
font-weight: bold;
color: #990000;
}
.todo-task {
font-style: italic;
color: #990000;
}
.todo-task-done {
text-decoration: line-through;
}
=== snap ===
The pseudo topic TodoList displays all topics containing TODOs including
the text of the TODOs.
--- Margrit Hoehme (java@mhoehme.de), 2006 ---