1# dokuwiki-plugin-scrollticker
2plugin that turns an unordered list into a scrolling newsticker
3
4## how to use?
5simply wrap an unordered list into the tags
6
7`<scrollticker>
8  my list
9</scrollticker>`
10
11besides ordinary lists, also lists generated by dokuwiki functions will work.
12For example you could fetch a list with links to the last three items of a discussion from the discussion plugin:
13
14`<scrollticker>
15{{threads>*&count=3&skipempty&simplelist}}
16</scrollticker>`
17
18or you could fetch a list with links to the articles in namespace "news" tagged with "latest", using the tag plugin
19
20`<scrollticker>
21{{topic>news?latest}}
22</scrollticker>`
23
24In fact, that was my main goal when i started this...
25
26Feel free to improve, share and debug!
27