Coverage for src/rtflite/rtf/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-14 16:35 +0000
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-14 16:35 +0000
1"""RTF syntax generation module.
3This module provides centralized RTF syntax generation capabilities,
4separating RTF formatting knowledge from business logic and supporting
5multiple content types including tables, text, and future figures/lists.
6"""
8from .syntax import RTFDocumentAssembler, RTFSyntaxGenerator
10__all__ = [
11 "RTFSyntaxGenerator",
12 "RTFDocumentAssembler",
13]