a9c9d2a3ae
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
8 lines
499 B
Python
Vendored
8 lines
499 B
Python
Vendored
#!/usr/bin/env python3
|
|
"""Bouwt handleiding-copilot-toetsweekplanner.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-toetsweekplanner.md")]
|
|
runpy.run_path(str(Path(__file__).resolve().parent.parent / "_gereedschap" / "build_handleiding.py"), run_name="__main__")
|