Skip to content

Commit

Permalink
README list action
Browse files Browse the repository at this point in the history
Sort languages in alphabetical order
  • Loading branch information
ghluka committed Mar 29, 2024
1 parent 65d2c36 commit 409a497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
for file in files:
file = file.replace("\\", "/")
language = file.split("/")[-1]
for k in subsitutes.keys():
for k in sorted(subsitutes.keys()):
language = language.replace(k, subsitutes[k])
md += f"\n- [{language}]({urllib.parse.quote(file)})"

Expand Down

0 comments on commit 409a497

Please sign in to comment.