2024-12-04 15:58:46 +00:00
|
|
|
""" TSI{B,C,D,J,P,S,V} are private tables used by Microsoft Visual TrueType (VTT)
|
|
|
|
tool to store its table source data.
|
|
|
|
|
|
|
|
TSIB contains the source text for the ``BASE`` table.
|
|
|
|
|
|
|
|
See also https://learn.microsoft.com/en-us/typography/tools/vtt/tsi-tables
|
|
|
|
"""
|
|
|
|
|
2017-03-07 13:00:37 +00:00
|
|
|
from .T_S_I_V_ import table_T_S_I_V_
|
2000-01-04 14:03:13 +00:00
|
|
|
|
2022-12-13 11:26:36 +00:00
|
|
|
|
2017-03-07 13:00:37 +00:00
|
|
|
class table_T_S_I_B_(table_T_S_I_V_):
|
2000-01-04 14:03:13 +00:00
|
|
|
pass
|