1
0
Fork 0
forked from github/pelican

paths for finding articles and pages are now parametrable

This commit is contained in:
Bruno Binet 2012-03-06 00:29:56 +01:00
commit 0ca9997e10
2 changed files with 10 additions and 4 deletions

View file

@ -8,6 +8,10 @@ from pelican import log
DEFAULT_THEME = os.sep.join([os.path.dirname(os.path.abspath(__file__)),
"themes/notmyidea"])
_DEFAULT_CONFIG = {'PATH': None,
'ARTICLE_DIR': '',
'ARTICLE_EXCLUDES': ('pages',),
'PAGE_DIR': 'pages',
'PAGE_EXCLUDES': (),
'THEME': DEFAULT_THEME,
'OUTPUT_PATH': 'output/',
'MARKUP': ('rst', 'md'),