Update readme format <noupdate>

This commit is contained in:
2024-04-19 21:10:21 +02:00
parent 19c6975497
commit 97c45c5ba8
5 changed files with 11 additions and 10 deletions

View File

@ -39,8 +39,9 @@ if __name__ == "__main__":
# Appends links to README
with open(args.readme_path, "a") as readme_f:
readme_f.write(f"\n\n## Table of contents\n")
for year in sorted(notes_metadata.keys()):
readme_f.write(f"\n\nYear {year}\n---\n")
readme_f.write(f"\n### Year {year}\n")
for semester in sorted(notes_metadata[year].keys()):
for course in sorted(notes_metadata[year][semester]):