pass filename to template
This commit is contained in:
parent
4490a7d5ed
commit
030b1c4cdb
16
geminer.py
16
geminer.py
|
@ -61,13 +61,6 @@ for dirname, subdirlist, mdlist in os.walk('.'):
|
|||
# For now, tags list must be a comma-separated string
|
||||
# TODO: make possible to list tags as a YAML list
|
||||
|
||||
posts_meta.append({
|
||||
"title": title,
|
||||
"author": author,
|
||||
"date": date,
|
||||
"tags": tags
|
||||
})
|
||||
|
||||
for item in config.replace:
|
||||
mdtext = mdtext.replace(item[0],item[1])
|
||||
|
||||
|
@ -115,6 +108,15 @@ for dirname, subdirlist, mdlist in os.walk('.'):
|
|||
gmifile = basename
|
||||
if config.gmi_extension:
|
||||
gmifile += ".gmi"
|
||||
|
||||
posts_meta.append({
|
||||
"title": title,
|
||||
"author": author,
|
||||
"date": date,
|
||||
"tags": tags,
|
||||
"filename": gmifile
|
||||
})
|
||||
|
||||
print(gmi_subpath+"/"+gmifile)
|
||||
with open(gmi_subpath+"/"+gmifile, 'w') as gmi:
|
||||
gmi.write(gmitext)
|
||||
|
|
Loading…
Reference in New Issue