summaryrefslogtreecommitdiff
path: root/src/features/README.md
blob: 75c85a84f85c833179bf54f6df45d681a713c972 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# OpenType features

This directory contains most (but not all) OpenType feature code.

- Some features are maintained by the Glyphs application and are stored in the .glyphs file.
- The order of features are defined in the .glyphs file

Each feature file in this directory is automatically wrapped in a `feature {...}` block.
For example, `cv07.fea` contains the following code:

```fea
sub germandbls by germandbls.1;
```

And when the font is compiled, it actually becomes:

```
feature cv07 {
  sub germandbls by germandbls.1;
}
```