README
1scrollticker Plugin for DokuWiki
2
3format unsorted list as scrolling news ticker
4
5All documentation for this plugin can be found at
6https://humanvisualisierungsknecht.de
7
8If you install this plugin manually, make sure it is installed in
9lib/plugins/scrollticker/ - if the folder is called different it
10will not work!
11
12Please refer to http://www.dokuwiki.org/plugins for additional info
13on how to install plugins in DokuWiki.
14
15----
16Copyright (C) medmen <med-men@gmx.net>
17
18This program is free software; you can redistribute it and/or modify
19it under the terms of the GNU General Public License as published by
20the Free Software Foundation; version 2 of the License
21
22This program is distributed in the hope that it will be useful,
23but WITHOUT ANY WARRANTY; without even the implied warranty of
24MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25GNU General Public License for more details.
26
27See the COPYING file in your DokuWiki folder for details
28
README.md
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