From 1c87cf9b7dfee65b6ea22e5336a0a1de168140dd Mon Sep 17 00:00:00 2001 From: bnewbold Date: Thu, 5 May 2016 17:02:48 -0400 Subject: add sitemap and headerid plugins --- pelicanconf.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pelicanconf.py') 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' -- cgit v1.2.3