Skip to content

Commit

Permalink
Rearranged folder as per github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
anandhu-eng committed May 24, 2024
1 parent a9dcd75 commit 718fd80
Show file tree
Hide file tree
Showing 250 changed files with 257 additions and 257 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
510 changes: 255 additions & 255 deletions mkdocs.yml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions mkdocsHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def print_category_structure(category_dict):
folder_name = folder.replace("/", "-")
source_path_folder = os.path.join("script", folder_name)
source_file_path = os.path.join(source_path_folder, "README.md")
target_path = os.path.join(category_path_formated, folder_name + ".md")
target_path = os.path.join(category_path_formated, os.path.join(folder_name, "index.md"))
if not os.path.exists(source_file_path):
# print(f"Source file does not exist: {source_file_path}")
continue
Expand All @@ -78,7 +78,7 @@ def print_category_structure(category_dict):
print(f" - {category.replace("/", "-")}:")
for folder in folders:
folder_name = folder.replace("/", "-")
target_path = os.path.join(category_path_formated, folder_name + ".md")
target_path = os.path.join(category_path_formated, os.path.join(folder_name, "index.md"))
print(f" - {folder_name}: {target_path}")

if __name__ == "__main__":
Expand Down

0 comments on commit 718fd80

Please sign in to comment.