From d146866ae14141235f99564f60036449500d9de8 Mon Sep 17 00:00:00 2001 From: Wolfgang Nowak Date: Sun, 29 Oct 2023 13:37:57 +0100 Subject: [PATCH] =?UTF-8?q?=09ge=C3=A4ndert:=20=20=20=20=20=20=20md2html.p?= =?UTF-8?q?y?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- md2html.py | 1 - 1 file changed, 1 deletion(-) diff --git a/md2html.py b/md2html.py index 02b1cc8..fb8ede9 100755 --- a/md2html.py +++ b/md2html.py @@ -23,6 +23,5 @@ 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)