prepend 'journal/' to resolved files

this is where the markdown files will go inside the instance dir
This commit is contained in:
2020-03-07 09:50:03 -06:00
parent d98a0a7935
commit 3f22b56c09
2 changed files with 4 additions and 4 deletions

View File

@@ -20,5 +20,5 @@ def journal_file_resolver(path):
"""
if path.endswith('/'):
path = f'{path}index'
path = f'{path}.md'
path = f'journal/{path}.md'
return path