Skip to content

Commit

Permalink
Merge branch 'app-pages' into eb492
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel committed Sep 11, 2024
2 parents 806b9f9 + ed7801a commit 45b3768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/version-specific/software-markdown-pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ def output_markdown(processed, output_base_path):
:param processed: Processed data to output (dictionary - letter -> software -> list of versions)
:param output_base_path: Pathlib object for base path of output
"""
software_cnt = sum(len(v) for v in processed.values())
pkg_cnt = sum(len(v) for v in processed.values())
letters = sorted(processed.keys())

with open(output_base_path / 'index.md', 'w') as top_page:
top_page.write(MKDOCS_SEARCH_PRIORITY)
top_page.write("# List of supported software\n\n")
top_page.write(generate_quick_links_line(letters, 0))
top_page.write(f"EasyBuild supports {software_cnt} different software packages (incl. toolchains, bundles):\n\n")
top_page.write(f"EasyBuild supports {pkg_cnt} different software packages (incl. toolchains, bundles):\n\n")

for letter in processed:
top_page.write(f" * [{letter}]({letter}/index.md)\n")
Expand Down

0 comments on commit 45b3768

Please sign in to comment.