Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify subset-fonts.pe to add floor/ceiling characters #1864

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions scripts/subset-fonts.pe
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ while (fi < num_copy_fonts)
SelectMore(0uff00,0uffef)
# CJK Unified Ideographs (for Japanese, aka kanji) (not present in mainstream Noto Serif fonts)
SelectMore(0u4e00,0u9faf)
# Additional requested special characters (mostly math) - see issue 1832
# harr, cdot, downarrow, elem, land, lor, oplus, lceil, rceil, lfloor,
# rfloor, forall, check
SelectMoreSingletons(0u2194,0u22C5,0u2193,0u2208,0u2227,0u2228,0u2295,0u2308,0u2309,0u230A,0u230B,0u2200,0u2713)
endif
endif
#if (script == "fallback")
Expand Down