Skip to content

Commit

Permalink
chore: format glyphs as checked list
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Sep 25, 2024
1 parent d4de835 commit 85357ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/porting.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def progress(args):

print("<details>")
print("<summary>Glyphs status</summary>")
print("<ul>")
print()
for glyph in stored_glyphs:
if glyph in missing_glyphs:
print(f"<li>{glyph}</li>")
print(f"- [ ] {glyph}")
else:
print(f"<li><s>{glyph}</s></li>")
print("</ul>")
print(f"- [x] {glyph}")
print()
print("</details>")

if args.download_url:
Expand Down

0 comments on commit 85357ab

Please sign in to comment.