feat: erweitere VocabLessonView mit Glossar-Optionen und verbessere die Lückentextformatierung
All checks were successful
Deploy to production / deploy (push) Successful in 2m8s

feat: füge Skript hinzu, um doppelte Muster in Lektionen zu identifizieren
feat: implementiere Skript zur Suche nach Übungen anhand von Text
feat: erstelle Skript zur Reparatur von Multiple-Choice-Antworten
feat: implementiere Skript zum Drucken von Lehrmusterinformationen
This commit is contained in:
Torsten Schulz (local)
2026-05-22 09:43:39 +02:00
parent 0732f44c96
commit cee4492dae
5 changed files with 186 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
import { BISAYA_LESSONS_24_43_BY_NUMBER, BISAYA_DIDACTICS_24_43 } from './bisaya-course-plan-24-43.js';
for (const n of [24,25,26]) {
const lesson = BISAYA_LESSONS_24_43_BY_NUMBER[n];
const title = lesson?.title || '[missing]';
const didactic = BISAYA_DIDACTICS_24_43[title];
console.log(`\nLektion ${n}${title}`);
if (!didactic) { console.log(' (keine Didaktik gefunden)'); continue; }
const patterns = didactic.corePatterns || [];
for (const p of patterns) {
if (typeof p === 'string') console.log(' -', p);
else console.log(' -', p.target || JSON.stringify(p));
}
}