You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
409 B
13 lines
409 B
4 months ago
|
# OpenType Feature File specification, section 6.b.ii:
|
||
|
# [GPOS LookupType 2] Enumerating pairs
|
||
|
# http://www.adobe.com/devnet/opentype/afdko/topic_feature_file_syntax.html
|
||
|
|
||
|
@Y_LC = [y yacute ydieresis];
|
||
|
@SMALL_PUNC = [comma semicolon period];
|
||
|
|
||
|
feature kern {
|
||
|
enum pos @Y_LC semicolon -80; # specific pairs
|
||
|
pos f quoteright 30; # specific pair
|
||
|
pos @Y_LC @SMALL_PUNC -100; # class pair
|
||
|
} kern;
|