14 lines
341 B
Python
14 lines
341 B
Python
""" TSI{B,C,D,J,P,S,V} are private tables used by Microsoft Visual TrueType (VTT)
|
|
tool to store its table source data.
|
|
|
|
TSID contains the source text for the ``GDEF`` table.
|
|
|
|
See also https://learn.microsoft.com/en-us/typography/tools/vtt/tsi-tables
|
|
"""
|
|
|
|
from .T_S_I_V_ import table_T_S_I_V_
|
|
|
|
|
|
class table_T_S_I_D_(table_T_S_I_V_):
|
|
pass
|