diff --git a/publishconf.py b/publishconf.py index 185184d..0b5cfa9 100644 --- a/publishconf.py +++ b/publishconf.py @@ -2,24 +2,40 @@ # -*- coding: utf-8 -*- # from __future__ import unicode_literals -# This file is only used if you use `make publish` or -# explicitly specify it as your config file. +AUTHOR = 'Tanner Collin' +SITENAME = 'Tanner Collin' +SITEURL = '' -import os -import sys -sys.path.append(os.curdir) -from pelicanconf import * +PATH = 'content' -# If your site is available via HTTPS, make sure SITEURL begins with https:// -SITEURL = '' -RELATIVE_URLS = False +TIMEZONE = 'Canada/Mountain' + +DEFAULT_LANG = 'en' + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +DEFAULT_PAGINATION = False -FEED_ALL_ATOM = 'feeds/all.atom.xml' -CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' +MARKDOWN = { + 'extension_configs': { + 'markdown.extensions.codehilite': {'css_class': 'highlight'}, + 'markdown.extensions.extra': {}, + 'markdown.extensions.meta': {}, + 'markdown.extensions.toc': { + 'toc_depth': '2-3', + 'anchorlink': True, + }, + }, + 'output_format': 'html5', +} -DELETE_OUTPUT_DIRECTORY = True +# Uncomment following line if you want document-relative URLs when developing +#RELATIVE_URLS = True -# Following items are often useful when publishing +THEME = 'themes/theme' -#DISQUS_SITENAME = "" -#GOOGLE_ANALYTICS = "" \ No newline at end of file