Skip to content

Commit

Permalink
fix: add missing punctuation to latin subset (#751)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpicone authored Mar 3, 2020
1 parent 910d9d5 commit 89e2cbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Binary file modified fonts/IBMPlexSansLatin-VF.woff2
Binary file not shown.
5 changes: 3 additions & 2 deletions fonts/subset.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
LATIN="U+0020-00FF"
PUNCTUATION="U+2000-206F"
ARROWS="U+2190-21c6"
LATINEXT="U+0100-024F"
GREEK="U+0370-03FF"
CYR="U+0400-04FF"
CYREXT="U+0500-052F"
ARROWS="U2190-21c6"

pyftsubset src/IBMPlexSans-Italic-VF.ttf --unicodes=$LATIN --flavor="woff2" --output-file=IBMPlexSansLatin-Italic-VF.woff2;
pyftsubset src/IBMPlexSans-Italic-VF.ttf --unicodes=$LATINEXT --flavor="woff2" --output-file=IBMPlexSansLatinExt-Italic-VF.woff2;
Expand All @@ -12,7 +13,7 @@ pyftsubset src/IBMPlexSans-Italic-VF.ttf --unicodes=$GREEK --flavor="woff2" --ou
pyftsubset src/IBMPlexSans-Italic-VF.ttf --unicodes=$CYR --flavor="woff2" --output-file=IBMPlexSansCyr-Italic-VF.woff2;
pyftsubset src/IBMPlexSans-Italic-VF.ttf --unicodes=$CYREXT --flavor="woff2" --output-file=IBMPlexSansCyrExt-Italic-VF.woff2;

pyftsubset src/IBMPlexSans-VF.ttf --unicodes=$LATIN,$ARROWS --flavor="woff2" --output-file=IBMPlexSansLatin-VF.woff2;
pyftsubset src/IBMPlexSans-VF.ttf --unicodes=$LATIN,$ARROWS,$PUNCTUATION --flavor="woff2" --output-file=IBMPlexSansLatin-VF.woff2;
pyftsubset src/IBMPlexSans-VF.ttf --unicodes=$LATINEXT --flavor="woff2" --output-file=IBMPlexSansLatinExt-VF.woff2;
pyftsubset src/IBMPlexSans-VF.ttf --unicodes=$VIETNAMESE --flavor="woff2" --output-file=IBMPlexSansVietnamese-VF.woff2;
pyftsubset src/IBMPlexSans-VF.ttf --unicodes=$GREEK --flavor="woff2" --output-file=IBMPlexSansGreek-VF.woff2;
Expand Down

1 comment on commit 89e2cbc

@vercel
Copy link

@vercel vercel bot commented on 89e2cbc Mar 3, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.