This repository has been archived on 2025-10-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
inter-font/src/features
2020-04-04 11:27:10 -07:00
..
calt.fea Moves arrows and NxN substitutions from liga to calt. Closes #222 2020-01-14 10:13:01 -08:00
ccmp.fea Move enclosing combining compositions from rlig to ccmp OT feature. Closes #241 2020-04-04 11:27:10 -07:00
cpsp.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv01-one.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv02-four.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv03-six.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv04-nine.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv05-l-tail.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv06-r.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv07-germandbls.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv08-i-serif.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv09-three.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv10-g-spur.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
cv11-single-storey-a.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
dlig.fea ligature features (liga, rlig, dlig) 2019-08-04 19:16:55 -07:00
frac.fea refinements to fractions and frac 2019-09-07 10:45:49 -07:00
README.md moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
salt.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
ss01-alt-digits.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
ss02-disambiguation.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
ss03-r-curve.fea remove 6 unused glyphs 2019-09-04 11:11:45 -07:00
subs.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
sups.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00
zero.fea moves feature code out of the glyphs file 2019-08-04 15:17:39 -07:00

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:

sub germandbls by germandbls.1;

And when the font is compiled, it actually becomes:

feature cv07 {
  sub germandbls by germandbls.1;
}