diff options
author | Andreas Gohr <andi@splitbrain.org> | 2015-01-10 15:06:37 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2015-01-10 15:06:37 +0100 |
commit | d7862ff55cfced5ef441903c84af1c622d7b2736 (patch) | |
tree | 276f4d8560292e26c5b9e84e461b0048ef5333f8 | |
parent | 16595259b65a9126e7ce3f73e065f62cacf74a72 (diff) | |
parent | 5c7812a8e4b376643062b85088143c265e5ffb4b (diff) | |
download | rpg-d7862ff55cfced5ef441903c84af1c622d7b2736.tar.gz rpg-d7862ff55cfced5ef441903c84af1c622d7b2736.tar.bz2 |
Merge pull request #999 from BCLibCoop/master
Document the nosort parameter.
-rw-r--r-- | data/pages/wiki/syntax.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/data/pages/wiki/syntax.txt b/data/pages/wiki/syntax.txt index 86ad815e4..7b453efa2 100644 --- a/data/pages/wiki/syntax.txt +++ b/data/pages/wiki/syntax.txt @@ -481,10 +481,13 @@ echo '</tr></table>'; | author | show item authors names | | date | show item dates | | description| show the item description. If [[doku>config:htmlok|HTML]] is disabled all tags will be stripped | +| nosort | do not sort the items in the feed | | //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). | The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered. +By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the ''reverse'' parameter, or display the feed as is with ''nosort''. + **Example:** {{rss>http://slashdot.org/index.rss 5 author date 1h }} |