Convert title to Logseq-amenable metadata
This commit is contained in:
parent
37ea872f5c
commit
908112fe9c
1 changed files with 8 additions and 0 deletions
|
@ -13,6 +13,14 @@ def rewrite_file(filepath):
|
||||||
or (i == 4 and line == "\n")
|
or (i == 4 and line == "\n")
|
||||||
):
|
):
|
||||||
continue
|
continue
|
||||||
|
if (i == 5):
|
||||||
|
title_pieces = line.split("======")
|
||||||
|
if len(title_pieces) == 3:
|
||||||
|
title = title_pieces[1].strip()
|
||||||
|
w.write("---\n")
|
||||||
|
w.write("title: " + title + "\n")
|
||||||
|
w.write("---\n")
|
||||||
|
continue
|
||||||
|
|
||||||
w.write(line)
|
w.write(line)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue