mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add information about TAG_FEED. Fixes #117
This commit is contained in:
parent
0a041c2509
commit
278038ee87
1 changed files with 16 additions and 10 deletions
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue