extend list of known_good_names (.notdef, .null, etc)
See original GitHub issue fb.new_check("Glyph names are all valid?")
known_good_names = ['.notdef', '.null']
bad_names = []
# we should extend this list according to the opentype spec
(issue #924)
Issue Analytics
- State:
- Created 7 years ago
- Comments:13 (12 by maintainers)
Top Results From Across the Web
Extending a list in Python (5 different ways) - GeeksforGeeks
Using extend() method: This method iterates over an iterable like string, list, tuple, etc., and adds each element of the iterable at the...
Read more >Should I extend ArrayList to add attributes that isn't null?
You simply wrap your ArrayList with another List implementation that delegates most of the methods but adds validation logic:
Read more >Python List extend() - Programiz
The extend() method adds all the elements of an iterable (list, tuple, string etc.) to the end of the list. Example. # create...
Read more >Python List extend() Method - W3Schools
Definition and Usage. The extend() method adds the specified list elements (or any iterable) to the end of the current list.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
.null is still mentioned in the CORL table spec. Apparently DirectWrite has some implementation detail that expects the glyph at index 1 be empty (non printable), but this only applies for CORL/CPAL color fonts, not all fonts.
If gid1 is non empty, then it will show up underneath all other color glyphs; this happens in Windows 10 on Google Chrome.
https://github.com/MicrosoftDocs/typography-issues/issues/346
In OT 1.8, only
.notdef
is recommended now and the rest not mentioned.