20 lines
438 B
Plaintext
20 lines
438 B
Plaintext
# Example file from OpenType Feature File specification, section 1.
|
|
# http://www.adobe.com/devnet/opentype/afdko/topic_feature_file_syntax.html
|
|
|
|
# Script and language coverage
|
|
languagesystem DFLT dflt;
|
|
languagesystem latn dflt;
|
|
|
|
# Ligature formation
|
|
feature liga {
|
|
substitute f i by f_i;
|
|
substitute f l by f_l;
|
|
} liga;
|
|
|
|
# Kerning
|
|
feature kern {
|
|
position A Y -100;
|
|
position a y -80;
|
|
position s f' <0 0 10 0> t;
|
|
} kern;
|