From 25184bbdbdb40cab88b5a259f1e521c52de27ed5 Mon Sep 17 00:00:00 2001 From: Aravinda VK Date: Sat, 13 Sep 2014 12:10:19 +0530 Subject: [PATCH] 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 --- docs/settings.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/settings.rst b/docs/settings.rst index 71d37464..0adbcc49 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -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``.