How to programmatically generate some documentation from Python dictionary and insert it into .rst file using Sphinx
I am writing a configuration tool that automates the deployment of some monitoring dashboards. Each dashboard has a written description that is available in the tool, and can be found in the deployed dashboard. But we also have some functional documentation that repeats this description so end-users can read it outside of the code. So basically we have the following:
How can I change the text displayed by :ref:`modindex` in Sphinx documentation?
I’m documenting a Python API of several scripts with Sphinx. In the main file index.rst
I have the familiar indices using the special Sphinx names:
Sphinx multilingual
I’m trying to find examples or something similar on how to create folder-based multilingualism. This means that I will have folders /ru, /en, /fr, and each of them will have its own .rst files with the corresponding content.