Coverage for src / rtflite / rtf / __init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-11-28 05:09 +0000

1"""RTF syntax generation module. 

2 

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""" 

7 

8from .syntax import RTFDocumentAssembler, RTFSyntaxGenerator 

9 

10__all__ = [ 

11 "RTFSyntaxGenerator", 

12 "RTFDocumentAssembler", 

13]