diff --git a/zimwiki-txt-to-logseq-md.py b/zimwiki-txt-to-logseq-md.py new file mode 100644 index 0000000..5856591 --- /dev/null +++ b/zimwiki-txt-to-logseq-md.py @@ -0,0 +1,10 @@ +import os + +def rewrite_file(filepath): + with open(filepath, 'r') as f: + contents = f.read() + + +for filepath in os.listdir(): + if file.endswith(".txt"): + rewrite_file(filepath) diff --git a/zimwiki_txt_to_logseq_md.py b/zimwiki_txt_to_logseq_md.py deleted file mode 100644 index 5d82b53..0000000 --- a/zimwiki_txt_to_logseq_md.py +++ /dev/null @@ -1,23 +0,0 @@ -import os - -def rewrite_file(filepath): - with open(filepath, 'r') as f: - base = filepath[:-4] - newfilepath = base + ".md" - with open(newfilepath, 'w') as w: - for i, line in enumerate(f): - if ( (i == 0 and line == "Content-Type: text/x-zim-wiki\n") - or (i == 1 and line == "Wiki-Format: zim 0.26\n") - or (i == 2 and line == "Creation-Date: Not found\n") - or (i == 3 and line == "Modification-Date: Not found\n") - or (i == 4 and line == "\n") - ): - continue - - w.write(line) - - - -# for filepath in os.listdir(): -# if file.endswith(".txt"): -# rewrite_file(filepath)