mkdir docs/
cd docs/
pip install sphinx sphinx-rtd-theme myst-parser recommonmark
sphinx-quickstart # interactive shell for creating a sphinx settings
# select yes for seperating source from build
cd sources/
touch a.md b.md c.md
cd ..
add some content to these files.
make html
now you can access your GUI docs via browser
open _build/html/index.html