studeyang
Results
2
comments of
studeyang
把 collapsed 设置成 true 就可以了。 ```yaml widgets: - position: left type: toc index: false collapsed: true depth: 3 ```
python for it, see: [generate_sitemap.py](https://github.com/studeyang/technotes/blob/master/generate_sitemap.py) ```python import datetime import os url = 'https://studeyang.tech/technotes/#' file_path = "./sitemap.xml" exclude_files = [ 'coverpage', 'navbar', 'README', 'sidebar', 'A/README', 'A/Python/README', 'A/Python/sidebar' ] def create_sitemap(): xml...