Add information about TAG_FEED. Fixes #117

This commit is contained in:
Alexis Metaireau 2011-05-11 11:10:14 +01:00
commit 278038ee87

View file

@ -69,7 +69,10 @@ Feed settings
By default, pelican uses atom feeds. However, it is possible to use RSS feeds By default, pelican uses atom feeds. However, it is possible to use RSS feeds
instead, at your covenience. instead, at your covenience.
Pelican generates category feeds as well as feeds for all your articles. Pelican generates category feeds as well as feeds for all your articles. It does
not generate feeds for tags per default, but it is possible to do so using
the ``TAG_FEED`` and ``TAG_FEED_RSS`` settings:
================================================ ===================================================== ================================================ =====================================================
Setting name (default value) what does it do? Setting name (default value) what does it do?
@ -78,6 +81,9 @@ Setting name (default value) what does it do?
`CATEGORY_FEED_RSS` (``None``, i.e. no RSS) Where to put the categories rss feeds. `CATEGORY_FEED_RSS` (``None``, i.e. no RSS) Where to put the categories rss feeds.
`FEED` (``'feeds/all.atom.xml'``) relative url to output the atom feed. `FEED` (``'feeds/all.atom.xml'``) relative url to output the atom feed.
`FEED_RSS` (``None``, i.e. no RSS) relative url to output the rss feed. `FEED_RSS` (``None``, i.e. no RSS) relative url to output the rss feed.
`TAG_FEED` (``None``, ie no tag feed) relative url to output the tags atom feed. It should
be defined using a "%s" matchin the tag name
`TAG_FEED_RSS` (``None``, ie no RSS tag feed) relative url to output the tag RSS feed
================================================ ===================================================== ================================================ =====================================================
.. [2] %s is the name of the category. .. [2] %s is the name of the category.