30 lines
452 B
Plaintext
30 lines
452 B
Plaintext
languagesystem DFLT dflt;
|
|
languagesystem latn dflt;
|
|
|
|
|
|
# GSUB
|
|
|
|
lookup points {
|
|
sub \period \period by \periodcentered;
|
|
} points;
|
|
|
|
lookup ligaturesinclusives {
|
|
sub \t \periodcentered \e by \uF4910;
|
|
} ligaturesinclusives;
|
|
|
|
|
|
# récap gsub
|
|
|
|
feature liga {
|
|
|
|
script DFLT;
|
|
language dflt ;
|
|
lookup points;
|
|
lookup ligaturesinclusives;
|
|
|
|
script latn;
|
|
language dflt ;
|
|
lookup points;
|
|
lookup ligaturesinclusives;
|
|
} liga;
|