diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-05 22:38:18 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-06 00:54:40 +0100 |
commit | 9d9a604b830e113bf944af9bff6ea2cb91cfb054 (patch) | |
tree | feaa4bdd37aaaa090eb1df31bfcdaf4c47e29b5f | |
parent | 66fe31e3957d15982421e5e80ff67df795926394 (diff) | |
download | mdhtml-9d9a604b830e113bf944af9bff6ea2cb91cfb054.tar.gz mdhtml-9d9a604b830e113bf944af9bff6ea2cb91cfb054.tar.bz2 mdhtml-9d9a604b830e113bf944af9bff6ea2cb91cfb054.zip |
+confirmation of markdown compilation
-rw-r--r-- | converter.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/converter.py b/converter.py index d34774d..afa28a3 100644 --- a/converter.py +++ b/converter.py @@ -64,3 +64,5 @@ for md in markdown_compiled: file_name = str(time).replace(" ", "@") + ".html" with open(file_name, 'w') as file: file.write(header_copy) + +print("Done") |