You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
383 B

/*This is a hack to prevent mkdocs from creating useless subheadings in table of
contents.
E.g. If there is a page called introduction.md and it contains the following:
# Introduction
Blah Blah Blah
Then mkdocs created a table of contents like this:
Introduction
Introduction
This hack hides the second level heading
*/
.toctree-l2 {
display: none;
}