2015-03-11 12:31:44 -07:00
|
|
|
from .otBase import BaseTTXConverter
|
|
|
|
|
|
|
|
|
|
|
|
class table__f_e_a_t(BaseTTXConverter):
|
2021-11-18 09:01:27 +00:00
|
|
|
"""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 `Feature Name Table <https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6feat.html>`_
|
|
|
|
in the TrueType Reference Manual for more information on the structure and
|
|
|
|
purpose of this table."""
|
2022-12-13 11:26:36 +00:00
|
|
|
|
2015-03-11 12:31:44 -07:00
|
|
|
pass
|