Understand how OpenType features are structured in Inter
masterInter's OpenType features are stored as individual .fea files within the src/features directory. Each file represents a specific feature (e.g., cv07.fea).
Note that these files do not contain the feature { ... } wrapper themselves; instead, they contain raw feature code. During the font compilation process, each file is automatically wrapped in a feature { ... } block based on its filename.
Important for font designers/contributors: The definitive order of features is managed in the .glyphs file, not by the file order in this directory. Some features are maintained directly within the .glyphs application.
// Example content of cv07.fea
sub germandbls by germandbls.1;
// Resulting compiled code:
feature cv07 {
sub germandbls by germandbls.1;
}