1
0

test
All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m2s

This commit is contained in:
2025-12-22 03:00:41 +01:00
parent 5a2b99c99a
commit d6bd08d11f
11 changed files with 154 additions and 190 deletions

Binary file not shown.

BIN
quiz/db.sqlite3-shm Normal file

Binary file not shown.

BIN
quiz/db.sqlite3-wal Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -150,7 +150,7 @@ def parse_markdown_question(file_path: Path, content: str) -> Tuple[bool, dict]:
'question_type': question_type,
'tags': tags if 'tags' in locals() else []
}
}
# Extract options (pattern: "- A:" or "- A" for MCQ, or text for textalternativ)
options_data = []
@@ -258,7 +258,7 @@ def parse_markdown_question(file_path: Path, content: str) -> Tuple[bool, dict]:
'question_type': question_type,
'tags': tags if 'tags' in locals() else []
}
}
def import_question_file(file_path: Path, base_path: Path, stats: ImportStats, force: bool = False):