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.
10 lines
188 B
10 lines
188 B
4 months ago
|
@PUNC = [comma semicolon period];
|
||
|
|
||
|
feature kern {
|
||
|
pos [A] @PUNC 1;
|
||
|
pos [B C] [comma] 2;
|
||
|
pos [D E F] [comma] 3;
|
||
|
pos [D E F] [semicolon period] 4;
|
||
|
pos [G] @PUNC <5 5 5 5>;
|
||
|
} kern;
|