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


# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6bsln.html
class table__b_s_l_n(BaseTTXConverter):
    """Baseline table

    The AAT ``bsln`` table is similar in purpose to the OpenType ``BASE``
    table; it stores per-script baselines to support automatic alignment
    of lines of text.

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

    pass