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.
29 lines
452 B
29 lines
452 B
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;
|
|
|