forked from github/pelican
paths for finding articles and pages are now parametrable
This commit is contained in:
parent
012caed1dc
commit
0ca9997e10
2 changed files with 10 additions and 4 deletions
|
|
@ -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'),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue