From f3d8fee23c9506d81f58dc242efbf9839e85e0b5 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sat, 7 Sep 2019 01:05:34 +0200 Subject: [PATCH] Disable stream from configuration --- pelicanconf.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pelicanconf.py b/pelicanconf.py index eb7b8af..aa21ec6 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -30,7 +30,19 @@ DEFAULT_PAGINATION = 100 # Uncomment following line if you want document-relative URLs when developing PLUGIN_PATHS = ['./pelican-plugins', './plugins-custom'] -PLUGINS = ['dateish', 'extract_toc', 'i18n_subsites', 'summary', 'events-ics','complex_footnotes', 'stream', 'thumbnailer'] + +PLUGINS = [ + 'dateish', + 'extract_toc', + 'i18n_subsites', + 'summary', + 'events-ics', + 'complex_footnotes', + # Note(decentral1se): disable for now as breaking site generation + # please feel free to re-enable it as needed + # 'stream', + 'thumbnailer' +] MARKDOWN = { 'extension_configs': {