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 d37765a commit 360c0a9Copy full SHA for 360c0a9
scripts/gen_ref_pages.py
@@ -31,6 +31,10 @@
31
with mkdocs_gen_files.open(full_doc_path, "w") as fd:
32
identifier = ".".join(parts)
33
print("::: " + identifier, file=fd)
34
+ if parts[-1] == "config":
35
+ print(" options:", file=fd)
36
+ print(" show_if_no_docstring: true", file=fd)
37
+ print(' filters: ["!^_"]', file=fd)
38
39
with mkdocs_gen_files.open("reference/SUMMARY.md", "w") as nav_file:
40
nav_file.writelines(nav.build_literate_nav())
0 commit comments