Skip to content

Commit

Permalink
Merge pull request #169 from valentimarco/refactor/tree-structure
Browse files Browse the repository at this point in the history
[Refactor]change tree structure
  • Loading branch information
nicola-corbellini authored Jun 23, 2024
2 parents c51da9f + a0f55ba commit d742586
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gen_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

module_path = path.relative_to(core_code_dir).with_suffix("")
doc_path = path.relative_to(core_code_dir).with_suffix(".md")
full_doc_path = Path("technical/API_Documentation", doc_path)
full_doc_path = Path("API_Documentation", doc_path)

parts = tuple(module_path.parts)

Expand All @@ -46,7 +46,7 @@
mkdocs_gen_files.set_edit_path(full_doc_path, path)


with mkdocs_gen_files.open("technical/API_Documentation/SUMMARY.md", "w") as nav_file: #
with mkdocs_gen_files.open("API_Documentation/SUMMARY.md", "w") as nav_file: #
if os.path.exists(core_code_dir):
nav_file.writelines(nav.build_literate_nav()) #
else:
Expand Down

0 comments on commit d742586

Please sign in to comment.