FIXED:
* Dep bumps
* Better docs display on pkg.go.dev
This commit is contained in:
brent saner
2025-08-28 01:26:04 -04:00
parent 9b39811206
commit 72818c2d5c
7 changed files with 76 additions and 12 deletions

View File

@@ -15,5 +15,10 @@ for f in $(find . -maxdepth 1 -type f -iname "*.adoc"); do
asciidoctor -o "${docsdir}/${nosuffix}.html" "${f}"
git add "${docsdir}/${nosuffix}.html"
if command -v pandoc &> /dev/null;
then
asciidoctor -b docbook -o - "${f}" | pandoc -f docbook -t markdown_strict -o "${docsdir}/${nosuffix}.md"
git add "${docsdir}/${nosuffix}.md"
fi
done
echo "Regenerated docs"