aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/fonttools/fontTools/ttLib/tables/_f_e_a_t.py
blob: 8e279db0059613d5c0e0ac061dc9b2b62aefe73b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from .otBase import BaseTTXConverter


class table__f_e_a_t(BaseTTXConverter):
    """Feature name table

    The feature name table is an AAT (Apple Advanced Typography) table for
    storing font features, settings, and their human-readable names. It should
    not be confused with the ``Feat`` table or the OpenType Layout ``GSUB``/``GPOS``
    tables.

    See also https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6feat.html
    """

    pass