There is a possibility to also host your documentation under https://sigs.centos.org, following a workflow based on Material for MkDocs (an enhanced version of mkdocs. This SIG Guide is itself following the same workflow, built from .md files hosted in a git repository.
If you want to use the same workflow, proceed like this:
The easiest way is just to use podman and a container:
podman pull docker.io/squidfunk/mkdocs-material:latest
Prepare your mkdocs.yml (see ours as quick reference and your docs
folder containing your markdown (.md) files.
Write documentation and once you have your skeleton, just test locally like this :
podman run --rm -it -p 8000:8000 -v ${PWD}:/docs:z squidfunk/mkdocs-material
You can now open your browser to http://localhost:8000 and you'll be able to see live your edit/changes. Once happy, you can commit to git and see the rendered result in the next minutes going live