├── src ├── other_section │ └── index.md ├── index.md ├── syntax │ └── index.md └── style.css ├── dst ├── other_section │ └── index.html ├── index.html ├── style.css └── syntax │ └── index.html ├── README.md ├── LICENSE └── mowgli.py /src/other_section/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | pagetitle: Other Section 3 | --- 4 | 5 | ### Mowgli 6 | 7 | #### [Home](../index.html) | [Syntax](../syntax/index.html) | Other Section 8 | 9 | Other Section 10 | ============= 11 | 12 | # 🐍 👀 13 | -------------------------------------------------------------------------------- /dst/other_section/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |