Structure
The following structure of the project:
index.rst
MyProject ========= Contents: .. toctree:: group1
group1.rst
Group1 ------ Subgroup1 ========= Subgroup1 contents Subgroup2 ========= Subgroup2 contents
Rendered to (after clicking on Group1
-> Subgroup2
):
As you can see it opens the Group1
page and linked to Subgroup2
section.
Want
I want to have the same on the left side (Group1
openned and Subgroup2
choosed) but on the right side I want to see only Subgroup2
page (page without Subgroup1
content).
I.e. have file group1/subgroup1.rst
:
Subgroup2
=========
Subgroup2 contents
Rendered to:
How it can be achieved? This is a simple example with the depth 2, what about depth 3-4?