180361eda4
Eight step-by-step guides, appendices (design patterns, design card with eight filled-in examples, AI tools in education), facilitator guide and presentation. LeX Consultancy edition; screenshots from the Dutch build of the same apps. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
8 lines
307 B
Python
Vendored
8 lines
307 B
Python
Vendored
import runpy, sys
|
|
from pathlib import Path
|
|
here = Path(__file__).resolve().parent
|
|
build = here.parent / "_tools" / "build_guide.py"
|
|
for md in [here / "design-card.md"] + sorted((here / "examples").glob("*.md")):
|
|
sys.argv = ["build_guide.py", str(md)]
|
|
runpy.run_path(str(build), run_name="__main__")
|