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
15 lines
602 B
JavaScript
15 lines
602 B
JavaScript
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));
|
|
}
|
|
}
|