Adding New Pages to OpenExo DocumentationΒΆ
This guide explains how to add new content pages to the Read the Docs site for the OpenExo project.
In your source folder (next to conf.py), create a file named, for example, new_page.rst.
At the top of new_page.rst, add a title and reference label:
Write your content below the title.
Open index.rst located in the same source/ directory.
Locate the .. toctree:: directive (usually after the main title).
Add an entry for your new file (without the .rst extension), for example:
Contents:
If your new page requires additional Sphinx extensions, install them and add to the extensions list.
For custom styling, you can adjust theme options or add CSS files under the _static folder and reference them via html_static_path.
```bash cd C:UserslandoDesktopLabFilesOpenExoDocumentationReadTheDocs make html # then open buildhtmlindex.html in your browser