This commit is contained in:
parent
3df1bb924b
commit
24b03c77c3
1 changed files with 5 additions and 1 deletions
6
main.py
6
main.py
|
@ -40,7 +40,11 @@ def render_post(fpath):
|
|||
if meta.get("draft"):
|
||||
draft = True
|
||||
|
||||
title_out, _ = convert("# " + title)
|
||||
disp_date = datetime.datetime.fromisoformat(date).strftime(
|
||||
"%Y-%m-%d"
|
||||
)
|
||||
|
||||
title_out, _ = convert("# " + title + f'\n\n<time datetime="{disp_date}">{disp_date}</time>')
|
||||
out = title_out + out
|
||||
|
||||
logging.info("writing to %s", destpath)
|
||||
|
|
Loading…
Add table
Reference in a new issue