From 6d2247b21024b0adad7fd060407326d53db037aa Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Mon, 2 Nov 2020 02:43:40 +0000 Subject: [PATCH] Cope pelicanconf to publishconf --- publishconf.py | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) 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. - -import os -import sys -sys.path.append(os.curdir) -from pelicanconf import * - -# If your site is available via HTTPS, make sure SITEURL begins with https:// +AUTHOR = 'Tanner Collin' +SITENAME = 'Tanner Collin' SITEURL = '' -RELATIVE_URLS = False -FEED_ALL_ATOM = 'feeds/all.atom.xml' -CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' +PATH = 'content' -DELETE_OUTPUT_DIRECTORY = True +TIMEZONE = 'Canada/Mountain' -# Following items are often useful when publishing +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 + +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', +} + +# Uncomment following line if you want document-relative URLs when developing +#RELATIVE_URLS = True + +THEME = 'themes/theme' -#DISQUS_SITENAME = "" -#GOOGLE_ANALYTICS = "" \ No newline at end of file