#!/usr/bin/python3 # -*- coding: utf-8 -*- """ Liest markdownfile ein und spuckt html aus: md2html meinmarkdownfile.md """ import sys, markdown2 as markdown markdown.Markdown.extras = ["footnotes", "break-on-newline"] try: mdfile = sys.argv[1] except: sys.exit("No file, honey.\n" + sys.argv[0] + ": Liest markdownfile ein und spuckt html aus: md2html meinmarkdownfile.md") headline = mdfile.split(".md")[0] htmlfilename = headline + ".html" myhead = "