Python Documentation

http://docs.python.org/3/

I would like to emulate the python documentation for my own project. The problem is that on every other page there is a link to the original image in the sidebar, except for the first page.

How can I archive the same effect on a new sphinx project?

+4
source share
1 answer

The documentation page at http://docs.python.org/3/ is based on Jinja .

pydoctheme (html_theme = 'pydoctheme' conf.py).

Sphinx:

+2

Source: https://habr.com/ru/post/1524579/


All Articles