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