SHA256
1
0

...fixing render

This commit is contained in:
brent saner 2025-08-28 07:45:59 -04:00
parent 8039ad7935
commit f087b55e9c
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 2901 additions and 0 deletions

23
.githooks/pre-commit/01-docgen Executable file
View File

@ -0,0 +1,23 @@
#!/bin/bash
#docsdir="${PWD}/docs"
docsdir="${PWD}"
if ! command -v asciidoctor &> /dev/null;
then
exit 0
fi
mkdir -p "${docsdir}"
for f in $(find . -maxdepth 1 -type f -iname "*.adoc"); do
filename=$(basename -- "${f}")
nosuffix="${filename%.*}"
asciidoctor \
-a allow-uri-read \
-o "${docsdir}/${nosuffix}.html" \
"${f}"
git add "${docsdir}/${nosuffix}.html"
done
echo "Regenerated docs"

2878
README.html Normal file

File diff suppressed because it is too large Load Diff