We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7887d8c commit f3ac55dCopy full SHA for f3ac55d
docs/gen_ref_pages.py
@@ -51,4 +51,8 @@
51
# > So basically, you can use the literate-nav plugin just for its ability to
52
# > infer only sub-directories, without ever writing any actual "literate navs".
53
with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file:
54
- nav_file.writelines(nav.build_literate_nav())
+ # nav_file.writelines(nav.build_literate_nav())
55
+ nav_file.writelines(
56
+ "# Code reference\nUse links in sidebar to navigate the code docstrings.\n"
57
+ + "".join(list(nav.build_literate_nav()))
58
+ )
0 commit comments