This allows for more than one "lookup ..." chaining statements at each glyph position in a chaining contextual substitution or positioning rule: e.g. sub a b c' lookup lookup1 lookup lookup2 d; The corresponding change in the Adobe OpenType Feature File Specification (and implementation in makeotf) happened in adobe-type-tools/afdko#1132.
11 lines
146 B
Plaintext
11 lines
146 B
Plaintext
lookup a_to_bc {
|
|
sub a by b c;
|
|
} a_to_bc;
|
|
|
|
lookup b_to_d {
|
|
sub b by d;
|
|
} b_to_d;
|
|
|
|
feature test {
|
|
sub a' lookup a_to_bc lookup b_to_d b;
|
|
} test; |