Open ru-fu opened 3 years ago
This is something we fix in the sphinx config
Estimate: 3
The Furo theme fixes this by just hiding it in CSS. This CSS does the trick:
aside.p-side-navigation--raw-html>ul>li:first-child>a {
display: none;
}
Actually, this will leave a lonely "Contents" for the ToC on pages where there are no subheadings. This should probably be fixed in Python (for example, in the way that Furo uses).
As a workaround, we can just hide it for all pages in CSS:
aside.p-side-navigation--raw-html h3 {
display: none;
}
It should also be possible to just add :hide-toc: to those pages, but I can't get that to work right now.
The page title should not be displayed in the local table of contents (contents on the right). It just adds another level.
Example in this project
For example:
The menu on the right should only have Go, Kernel requirements, ... I know that I'm on the Requirements page. ;)