Hi,
Is there a simple way to tell Sphinx to add some links to the sidebar
in the HTML output for the classic theme?
I'm trying to migrate the SymPy doc build from Travis to Actions and
I'm wondering if there's a better way of adding sidebar links.
You can see the sidebar links here:
https://docs.sympy.org/latest/index.html
In particular it has:
Documentation version
SymPy 1.7.1 (latest release)
SymPy
1.8.dev (development version)
At the moment those links are added by post-processing the HTML output
from Sphinx using this script which also does some other redundant
things that are no longer needed:
https://github.com/sympy/sympy_doc/blob/gh-pages/generate_indexes.py
Related sympy issue:
https://github.com/sympy/sympy_doc/issues/46
I think it would be cleaner if we could tell Sphinx to add those links
and avoid any post-processing of the output from Sphinx but I'm not
sure how to do it...
Oscar