From 5a448c14d22483ff3dfd604a9f1f1859fc3578f6 Mon Sep 17 00:00:00 2001 From: Sungchan Yi Date: Tue, 8 Apr 2025 00:16:19 +0900 Subject: [PATCH] fix: added preposition --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index bfe9c76..8a4cf87 100644 --- a/run.py +++ b/run.py @@ -50,7 +50,7 @@ def read_markdown_file(file_path: str, filename: str) -> tuple[str, str, str] | filtered_lines = [] for line in definitions.split("\n"): line = line.strip() - if line.startswith(("n.", "adj.", "adv.", "v.")): + if line.startswith(("n.", "adj.", "adv.", "v.", "prep.")): filtered_lines.append(line) definitions = "\n".join(filtered_lines)