Sphinx can be used to create general documentation, not just for Python modules. It supports reStructuredText (reST) and Markdown, making it a versatile tool for documentation.
This repo is a playground / reference for creating documentation with Sphinx.
Install pandoc via Homebrew if you haven't done so already:
brew install pandocpip3 install -r requirements.txtIf a Sphinx project hasn't been initialized, run the command:
sphinx-quickstartsphinx-build -b html . _buildmake clean
sphinx-build -b html . _buildOpen the index.html file located in the _build directory.