mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-16 14:42:29 -05:00
Centralize spurious-.0 detection, batch HTML render, and chapter workflow docs so vol1/vol2 audits reuse one lane with backward-compatible wrappers at the old paths.
13 lines
333 B
Python
13 lines
333 B
Python
#!/usr/bin/env python3
|
|
"""Backward-compat wrapper — use ``book/tools/audit/fmt/audit_html.py``."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import runpy
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
_TARGET = Path(__file__).resolve().parent / "fmt" / "audit_html.py"
|
|
sys.argv[0] = str(_TARGET)
|
|
runpy.run_path(str(_TARGET), run_name="__main__")
|