A bot used for https://code-your-snake.codingmaster398.repl.co/
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
19 lines
383 B
2 years ago
|
/*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;
|
||
|
}
|