1 I would like to add next plugin to Ikiwiki. It's `progressbar` or simply `progress`.
2 I'm not sure what plugin name better is, probably that shorter ;) I know that
3 [DokuWiki](http://wiki.splitbrain.org/plugin:progressbar) has similar plugin,
4 so I think it can be useful also for Ikiwiki users.
6 Here is proposition of the plugin syntax:
10 Of course, `done` argument is integer from 0 to 100.
12 A here is its HTML result:
14 <div class="progress">
15 <div class="progress-done" style="width: 50%">50%</div>
18 Note: I was trying with `<span>` tags too, but that tag is inline, so I can't
19 set `width` property for it.
21 Default CSS styles for the plugin can be like below:
24 border: 1px solid #ddd;
25 /* border: 2px solid #ddd; */
30 border: 2px solid #aaa;
38 vertical-align: middle;
41 You can use alternative, commented CSS code for `div.progress` if you dislike
42 padding around done strip.
44 Any comments? --[[Paweł|ptecza]]