diff --git a/md2html.py b/md2html.py index a6a48a6..87eeebc 100755 --- a/md2html.py +++ b/md2html.py @@ -1,7 +1,8 @@ #!/usr/bin/python3 # -*- coding: utf-8 -*- -""" Liest markdownfile ein und spuckt html aus: md2html meinmarkdownfile.md +""" +Liest markdownfile ein und spuckt html aus: md2html meinmarkdownfile.md """ import sys, markdown2 as markdown @@ -11,7 +12,7 @@ markdown.Markdown.extras = ["break-on-newline", "footnotes"] try: mdfile = sys.argv[1] except: - sys.exit("No file, honey.") + 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"