Cope pelicanconf to publishconf
This commit is contained in:
		| @@ -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 = "" | ||||
		Reference in New Issue
	
	Block a user