Skip to content

Commit

Permalink
glyphs.html: order glyphs
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Jul 4, 2023
1 parent 0d3ae01 commit 9c9c9fb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/diffenator2/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def proof_rendering(styles, templates, dst="out", filter_styles=None, characters
sample_text = filtered_font_sample_text(ttFont, characters)
test_strings = GFTestData.test_strings_in_font(ttFont)
characters = characters or [chr(c) for c in ttFont.getBestCmap()]
characters = list(sorted(characters))
_package(
templates,
dst,
Expand All @@ -119,6 +120,7 @@ def diff_rendering(matcher, templates, dst="out", filter_styles=None, characters
sample_text=filtered_font_sample_text(ttFont, characters)
test_strings = GFTestData.test_strings_in_font(ttFont)
characters = characters or [chr(c) for c in ttFont.getBestCmap()]
characters = list(sorted(characters))
_package(
templates,
dst,
Expand Down

0 comments on commit 9c9c9fb

Please sign in to comment.