Update site.

This commit is contained in:
2016-09-02 11:47:33 +02:00
parent 86b86ccdc0
commit 327ac4250c
32 changed files with 821 additions and 943 deletions

View File

@@ -32,7 +32,7 @@ template_base = read(template_base_file)
def pandoc(filename):
proc = subprocess.run(['pandoc', filename], stdout=subprocess.PIPE)
proc = subprocess.run(['pandoc', '--smart', filename], stdout=subprocess.PIPE)
return proc.stdout.decode('utf-8').strip()
def extract_markdown_title(filename):