From db0a63c7d71e2f21182be5d7202020f798c3997c Mon Sep 17 00:00:00 2001 From: "Robert A. Petit III" Date: Thu, 8 Aug 2024 02:02:53 +0000 Subject: [PATCH] add mkdocstrings attempt 11 --- .github/gen-ref-pages.py | 18 +++++++++--------- mkdocs.yml | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/gen-ref-pages.py b/.github/gen-ref-pages.py index 6479d9a..11d55c3 100755 --- a/.github/gen-ref-pages.py +++ b/.github/gen-ref-pages.py @@ -5,22 +5,22 @@ import mkdocs_gen_files root = Path(__file__).parent.parent -src = root / "camlhmp" +src = root / "camlhmp" -for path in sorted(src.rglob("*.py")): - module_path = path.relative_to(src).with_suffix("") - doc_path = path.relative_to(src).with_suffix(".md") - full_doc_path = Path("reference", doc_path) +for path in sorted(src.rglob("*.py")): + module_path = path.relative_to(src).with_suffix("") + doc_path = path.relative_to(src).with_suffix(".md") + full_doc_path = Path("reference", doc_path) parts = tuple(module_path.parts) - if parts[-1] == "__init__": + if parts[-1] == "__init__": parts = parts[:-1] elif parts[-1] == "__main__": continue - with mkdocs_gen_files.open(full_doc_path, "w") as fd: - identifier = ".".join(parts) - print("::: " + identifier, file=fd) + with mkdocs_gen_files.open(full_doc_path, "w") as fd: + identifier = ".".join(parts) + print("::: " + identifier, file=fd) mkdocs_gen_files.set_edit_path(full_doc_path, path.relative_to(root)) diff --git a/mkdocs.yml b/mkdocs.yml index f28a0da..d8691ac 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -61,7 +61,7 @@ plugins: default_handler: python handlers: python: - paths: [.] + paths: [camlhmp] options: show_source: true