mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-23 15:33:09 +08:00
33 lines
621 B
Python
Executable File
33 lines
621 B
Python
Executable File
#! /usr/bin/env python3
|
|
|
|
import re
|
|
|
|
def concat_gmi(link, name):
|
|
return "=> " + link + "\t" + name
|
|
|
|
|
|
f = open("posts.md")
|
|
lines = f.readlines()
|
|
|
|
regxp = re.compile("- \[(.+)\]\((.+)\)<br>")
|
|
|
|
for l in lines:
|
|
if l == "### Long Term Update\n":
|
|
print("")
|
|
print(l, end="")
|
|
elif l == "## Table of Contents\n":
|
|
print(l, end="")
|
|
|
|
match = regxp.match(l)
|
|
if match:
|
|
link = match.group(2)
|
|
if re.match(".+\.[a-z]+\.txt$", link):
|
|
link = link[:-4]
|
|
else:
|
|
link = "org/" + link + ".org"
|
|
|
|
print(concat_gmi(link, match.group(1)))
|
|
|
|
|
|
f.close()
|