Browse Source

conf: Include all articles in rss feeds

Sebastien Badia 8 years ago
parent
commit
631a1b0bb4
1 changed files with 4 additions and 2 deletions
  1. 4 2
      pelicanconf.py

+ 4 - 2
pelicanconf.py

@@ -23,10 +23,12 @@ CATEGORY_FEED_RSS = 'feeds/%s.rss.xml'
 TRANSLATION_FEED_ATOM = None
 AUTHOR_FEED_ATOM = None
 AUTHOR_FEED_RSS = None
+RSS_FEED_SUMMARY_ONLY = False
 
 # Social
 TWITTER_USERNAME = 'gitoyen'
 
+
 JINJA_FILTERS = {'is_active': filters.is_active}
 
 THEME = './theme'
@@ -47,13 +49,13 @@ PLUGINS = ['pelican-toc']
 STATIC_PATHS = ['images', 'extra/favicon.ico']
 
 TOC = {
-    'TOC_HEADERS' : '^h[2]',
+    'TOC_HEADERS': '^h[2]',
     'TOC_RUN': 'true'
 }
 
 MD_EXTENSIONS = ['attr_list', 'codehilite(css_class=highlight)', 'extra']
 # Uncomment following line if you want document-relative URLs when developing
-#RELATIVE_URLS = True
+# RELATIVE_URLS = True
 
 EXTRA_PATH_METADATA = {
     'extra/favicon.ico': {'path': 'favicon.ico'}