Files
Guido van Dijk 820d5bada8 feat: handleiding 4 (Lesmateriaal-check), 5 (Studiecoach) en 6 (Notulen-assistent) in de gratis laag van Copilot
- drie nieuwe mappen met handleiding (md + pdf), instructies.txt, beelden en de fictieve documenten
- README: Inhoud, agents-tabel en tekst onder Gratis laag uitgebreid
- CHANGELOG: tweede uitgave met de nieuwe bevindingen

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-21 15:27:17 +02:00

8 lines
489 B
Python
Vendored

#!/usr/bin/env python3
"""Bouwt handleiding-copilot-studiecoach.html, .pdf en .docx. Gebruik: python3 build.py
Het echte werk staat in ../_gereedschap/build_handleiding.py (gedeeld door alle handleidingen)."""
import runpy, sys
from pathlib import Path
sys.argv = ["build_handleiding.py", str(Path(__file__).resolve().parent / "handleiding-copilot-studiecoach.md")]
runpy.run_path(str(Path(__file__).resolve().parent.parent / "_gereedschap" / "build_handleiding.py"), run_name="__main__")