820147eeb1
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
8 lines
327 B
Python
Vendored
8 lines
327 B
Python
Vendored
import runpy, sys
|
|
from pathlib import Path
|
|
here = Path(__file__).resolve().parent
|
|
bouw = here.parent / "_gereedschap" / "build_handleiding.py"
|
|
for md in [here / "ontwerpkaart.md"] + sorted((here / "voorbeelden").glob("*.md")):
|
|
sys.argv = ["build_handleiding.py", str(md)]
|
|
runpy.run_path(str(bouw), run_name="__main__")
|