1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 03:38:52 +03:00

docs mostly

This commit is contained in:
Anton Afanasyeu
2026-06-05 12:41:11 +02:00
parent 9eca43b9f8
commit c5857e65f6
26 changed files with 5240 additions and 477 deletions

6
scripts/build-all-docs-pdf.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Render every docs/*.md to docs/<stem>.pdf (reportlab; see docs/_pdf_build/md_to_pdf.py).
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
python3 "$ROOT_DIR/docs/_pdf_build/build_all_docs_pdf.py"
echo "Done: $ROOT_DIR/docs/*.pdf"