adding asciiref gen hook

This commit is contained in:
brent saner 2024-08-16 20:14:37 -04:00
parent 90b88d82e8
commit 1437639338
Signed by: bts
GPG Key ID: 8C004C2F93481F6B
2 changed files with 3605 additions and 3588 deletions

View File

@ -0,0 +1,16 @@
#!/bin/bash

origdir="${PWD}"
docsdir="${PWD}/ref/ascii/"

if ! command -v asciidoctor &> /dev/null;
then
exit 0
fi

cd "${docsdir}"

asciidoctor -o ascii.html ascii.adoc

cd ${origdir}
git add "${docsdir}/ascii.html"

File diff suppressed because it is too large Load Diff