doc: Doc for new settings TAGS_FOR_FEED

New setting "TAGS_FOR_FEED" is introduced, default is []
If TAGS_FOR_FEED is set then it will generate feed only for
those tags.

Example usage
TAGS_FOR_FEED = ["thats", "awesome"]

Added documentation for my previous patch.
(Ref: https://github.com/getpelican/pelican/pull/1455)

Signed-off-by: Aravinda VK <mail@aravindavk.in>
This commit is contained in:
Aravinda VK 2014-09-13 12:10:19 +05:30
commit 25184bbdbd

View file

@ -494,6 +494,9 @@ Setting name (followed by default value, if any) What does it do?
``TAG_FEED_RSS = None``, i.e. no RSS tag feed Relative URL to output the tag RSS feed
``FEED_MAX_ITEMS`` Maximum number of items allowed in a feed. Feed item
quantity is unrestricted by default.
``TAGS_FOR_FEED = []``, i.e. generate feed for Use this to filter Tag feed generation only for some
tags. Applicable only if ``TAG_FEED_ATOM`` or
``TAG_FEED_RSS`` is set.
================================================= =====================================================
If you don't want to generate some or any of these feeds, set the above variables to ``None``.