font-test-data 0.6.2

Test data for the fontations crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
lookup MyLookup {
    sub a by A;
    sub b by B;
    sub c by C;
} MyLookup;

@abNotc = [a b];

feature oops {
    # 'sub c by C', though in lookup, is unreachable bc 'c' is not in the input
    sub @abNotc' lookup MyLookup z;
}oops;