Matteo Delucchi 87e1b93c4f
Some checks failed
Build README.html / build (push) Has been cancelled
CI for all three forges: build README.html and publish as artifact
2026-03-04 15:34:45 +01:00

21 lines
321 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
in="README.md"
out="README.html"
if [[ ! -f "$in" ]]; then
echo "ERROR: $in not found" >&2
exit 1
fi
# GitHub-flavored Markdown -> standalone HTML
pandoc "$in" \
--from=gfm \
--to=html5 \
--standalone \
--metadata title="README" \
--output "$out"
echo "Built $out"