Browse Source

Disable stream from configuration

master
Luke Murphy 5 years ago
parent
commit
f3d8fee23c
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 14
      pelicanconf.py

14
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': {

Loading…
Cancel
Save