aboutsummaryrefslogtreecommitdiffstats
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-05-05 17:02:48 -0400
committerbnewbold <bnewbold@robocracy.org>2016-05-05 17:02:48 -0400
commit1c87cf9b7dfee65b6ea22e5336a0a1de168140dd (patch)
tree5df4c522251bccc27eef3c898bdf5e59219bbf25 /pelicanconf.py
parent19aba9065649a9b41fe82783a48cb056304bd847 (diff)
downloadbnewnet-1c87cf9b7dfee65b6ea22e5336a0a1de168140dd.tar.gz
bnewnet-1c87cf9b7dfee65b6ea22e5336a0a1de168140dd.zip
add sitemap and headerid plugins
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index ab333c7..71046bb 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -20,12 +20,18 @@ PLUGIN_PATHS = ['plugins']
THEME = "theme"
+PLUGINS = ['sitemap', 'headerid']
+
+SITEMAP = {'format': 'xml'}
+
ARTICLE_URL = '{date:%Y}/{slug}/'
ARTICLE_SAVE_AS = '{date:%Y}/{slug}/index.html'
PAGE_URL = '{slug}/'
PAGE_SAVE_AS = '{slug}/index.html'
YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'
+MD_EXTENSIONS = ["codehilite(css_class=highlight)", "extra", "toc"]
+
TIMEZONE = 'UTC'
DEFAULT_LANG = u'en'