X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=blobdiff_plain;f=lightcards%2Fparse.py;h=d70c4e977935752853167a775dcc7f8aacb96dc6;hp=9b1820af5214edc3c9911721d8bb12eb04dcd5c9;hb=23bedf0b57ac06fbee12af000f42c992d3227dd1;hpb=ea6a965b34de841d6bf2d87d34cc21f1bd966c41 diff --git a/lightcards/parse.py b/lightcards/parse.py index 9b1820a..d70c4e9 100644 --- a/lightcards/parse.py +++ b/lightcards/parse.py @@ -11,8 +11,7 @@ from .deck import Card def md2html(file): """Use the markdown module to convert input to HTML""" try: - with open(file, "r", encoding="utf-8") as input_file: - return markdown.markdown(input_file.read(), extensions=['tables']) + return markdown.markdown(open(file, "r").read(), extensions=['tables']) except FileNotFoundError: print(f"lightcards: \"{file}\": No such file or directory") exit(1)