Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[spec] Replace invalid example in Feature File spec [skip ci] #1107

Merged
merged 1 commit into from
Mar 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/OpenTypeFeatureFileSpecification.md
Original file line number Diff line number Diff line change
Expand Up @@ -1436,11 +1436,12 @@ feature liga {
script latn;
language dflt;
# default lookup for latn included under all languages for the latn script

sub f l by f_l;

language DEU;
# default lookups included under the DEU language.
sub s s by germandbls; # This is also included.
sub c h by c_h;
sub c k by c_k;

language TRK exclude_dflt; # default lookups are excluded.
lookup NO_I; # Only this lookup is included under the TRK language
Expand All @@ -1458,7 +1459,7 @@ feature liga {
* Under the `latn` script, all languages but TRK will contain the default
lookups, and the f_l ligature rule.

* The germandbls ligature will apply only for the `latn`/`DEU ` language
* The c_h and c_k ligatures will apply only for the `latn`/`DEU ` language
system.

* The `latn`/`TRK ` language system will contain only the NO_I lookup.
Expand Down