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


# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6mort.html
class table__m_o_r_t(BaseTTXConverter):
    """The AAT ``mort`` table contains glyph transformations used for script shaping and
    for various other optional smart features.

    Note: ``mort`` has been deprecated in favor of the newer ``morx`` table.

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

    pass