fonttools/Tests/feaLib/data/MultipleLookupsPerGlyph.fea
Simon Cozens b299bfb389
[feaLib] Support multiple lookups per glyph position (#1905)
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.
2020-05-12 06:28:25 +01:00

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;