feat: add initial parser data structure & test

Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
This commit is contained in:
Konstantin Fickel 2025-06-20 14:36:02 +02:00
parent f73c6d16cb
commit 2091e5c98d
8 changed files with 375 additions and 30 deletions

View file

@ -1,7 +1,9 @@
import glob
import os
cwd = os.getcwd()
def run() -> None:
for file_name in glob.glob(f"{glob.escape(cwd)}/*.md"):
with open(file_name, "r") as file: