diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/features.mdwn | 7 | ||||
-rw-r--r-- | doc/ikiwiki.setup | 2 | ||||
-rw-r--r-- | doc/usage.mdwn | 6 |
3 files changed, 15 insertions, 0 deletions
diff --git a/doc/features.mdwn b/doc/features.mdwn index c20da504d..4699f3096 100644 --- a/doc/features.mdwn +++ b/doc/features.mdwn @@ -27,6 +27,13 @@ Currently implemented: and is quite smart about converting it to html. The only additional markup provided by ikiwiki aside from regular markdown is the [[WikiLink]]. +* [[RSS]] + + ikiwiki supports generating RSS (2.0) feed for individual pages. These + feeds can be subscribed to, to get an update when a page is changed. + + (Support for proper blogs is also planned.) + * support for other file types ikiwiki also supports files of any other type, including raw html, text, diff --git a/doc/ikiwiki.setup b/doc/ikiwiki.setup index 374093a5e..b81983080 100644 --- a/doc/ikiwiki.setup +++ b/doc/ikiwiki.setup @@ -44,4 +44,6 @@ use IkiWiki::Setup::Standard { # Can anonymous web users edit pages? #anonok => 1, + # Generate rss feeds for pages? + #rss => 1, } diff --git a/doc/usage.mdwn b/doc/usage.mdwn index b9744438b..02d01f49c 100644 --- a/doc/usage.mdwn +++ b/doc/usage.mdwn @@ -64,6 +64,12 @@ flags such as --verbose can be negated with --no-verbose. By default, anonymous users cannot edit the wiki. +* --rss, --norss + + If rss is set, along with every html page rendered by ikiwiki, an rss + page will also be rendered, to allow users to subscribe to a rss feed of + changes to that page. + * --cgi Enable [[CGI]] mode. In cgi mode ikiwiki runs as a cgi script, and supports editing pages, signing in, registration, and displaying [[RecentChanges]]. |