|
493 | 493 | # output / TRANSLATION[lang] / RSS_PATH / rss.xml
|
494 | 494 | # RSS_PATH = ""
|
495 | 495 |
|
496 |
| -# Number of posts in RSS feeds |
497 |
| -# FEED_LENGTH = 10 |
498 |
| - |
499 | 496 | # Slug the Tag URL. Easier for users to type, special characters are
|
500 | 497 | # often removed or replaced as well.
|
501 | 498 | # SLUG_TAG_PATH = True
|
|
745 | 742 |
|
746 | 743 | # 'Read more...' for the index page, if INDEX_TEASERS is True (translatable)
|
747 | 744 | INDEX_READ_MORE_LINK = '<p class="more"><a href="{link}">{read_more}…</a></p>'
|
748 |
| -# 'Read more...' for the RSS_FEED, if RSS_TEASERS is True (translatable) |
749 |
| -RSS_READ_MORE_LINK = '<p><a href="{link}">{read_more}…</a> ({min_remaining_read})</p>' |
| 745 | +# 'Read more...' for the RSS_FEED, if FEED_TEASERS is True (translatable) |
| 746 | +FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}…</a> ({min_remaining_read})</p>' |
750 | 747 |
|
751 |
| -# Append a URL query to the RSS_READ_MORE_LINK in Atom and RSS feeds. Advanced |
| 748 | +# Append a URL query to the FEED_READ_MORE_LINK in Atom and RSS feeds. Advanced |
752 | 749 | # option used for traffic source tracking.
|
753 | 750 | # Minimum example for use with Piwik: "pk_campaign=feed"
|
754 | 751 | # The following tags exist and are replaced for you:
|
755 | 752 | # {feedRelUri} A relative link to the feed.
|
756 | 753 | # {feedFormat} The name of the syndication format.
|
757 | 754 | # Example using replacement for use with Google Analytics:
|
758 | 755 | # "utm_source={feedRelUri}&utm_medium=nikola_feed&utm_campaign={feedFormat}_feed"
|
759 |
| -RSS_LINKS_APPEND_QUERY = False |
| 756 | +FEED_LINKS_APPEND_QUERY = False |
760 | 757 |
|
761 | 758 | # A HTML fragment describing the license, for the sidebar.
|
762 | 759 | # (translatable)
|
|
957 | 954 | # them. Generate Atom for tags by setting TAG_PAGES_ARE_INDEXES to True.
|
958 | 955 | # Atom feeds are built based on INDEX_DISPLAY_POST_COUNT and not FEED_LENGTH
|
959 | 956 | # Switch between plain-text summaries and full HTML content using the
|
960 |
| -# RSS_TEASER option. RSS_LINKS_APPEND_QUERY is also respected. Atom feeds |
| 957 | +# FEED_TEASER option. FEED_LINKS_APPEND_QUERY is also respected. Atom feeds |
961 | 958 | # are generated even for old indexes and have pagination link relations
|
962 | 959 | # between each other. Old Atom feeds with no changes are marked as archived.
|
963 | 960 | # GENERATE_ATOM = False
|
964 | 961 |
|
| 962 | +# Only inlclude teasers in Atom and RSS feeds. Disabling include the full |
| 963 | +# content. Defaults to True. |
| 964 | +# FEED_TEASERS = True |
| 965 | + |
| 966 | +# Strip HTML from Atom annd RSS feed summaries and content. Defaults to False. |
| 967 | +# FEED_PLAIN = False |
| 968 | + |
| 969 | +# Number of posts in Atom and RSS feeds. |
| 970 | +# FEED_LENGTH = 10 |
| 971 | + |
| 972 | +# Inclue preview image as a <figure><img></figure> at the top of the entry. |
| 973 | +# Requires FEED_PLAIN = False. If the preview image is found in the content, |
| 974 | +# it will not be included again. Image will be included as-is, aim to optmize |
| 975 | +# the image source for Feedly, Apple News, Flipboard, and other popular clients. |
| 976 | +# FEED_PREVIEWIMAGE = True |
| 977 | + |
965 | 978 | # RSS_LINK is a HTML fragment to link the RSS or Atom feeds. If set to None,
|
966 | 979 | # the base.tmpl will use the feed Nikola generates. However, you may want to
|
967 | 980 | # change it for a FeedBurner feed or something else.
|
968 | 981 | # RSS_LINK = None
|
969 | 982 |
|
970 |
| -# Show teasers (instead of full posts) in feeds? Defaults to True. |
971 |
| -# RSS_TEASERS = True |
972 |
| - |
973 |
| -# Strip HTML in the RSS feed? Default to False |
974 |
| -# RSS_PLAIN = False |
975 |
| - |
976 | 983 | # A search form to search this site, for the sidebar. You can use a Google
|
977 | 984 | # custom search (https://www.google.com/cse/)
|
978 | 985 | # Or a DuckDuckGo search: https://duckduckgo.com/search_box.html
|
|
0 commit comments