]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/parse.py
Only grab data from first table in file
[lightcards.git] / lightcards / parse.py
index 9b1820af5214edc3c9911721d8bb12eb04dcd5c9..a447485e4b046f4ab16bc67b251c8b140a41cba5 100644 (file)
@@ -11,19 +11,18 @@ 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)
+        sys.exit(f'lightcards: "{file}": No such file or directory')
 
 
 def parse_html(html):
     """Use BeautifulSoup to parse the HTML"""
+
     def clean_text(inp):
         return inp.get_text().rstrip()
 
-    soup = BeautifulSoup(html, 'html.parser')
+    soup = BeautifulSoup(html, "html.parser").find("table")
     outp = []
 
     for x in soup.find_all("tr"):