Spaces:
Sleeping
Sleeping
| """ | |
| Módulo de geração de documentos DOCX. | |
| """ | |
| from .numbering import NumeradorSecoes | |
| from .generator import LaudoGenerator | |
| from .formatters import ( | |
| # Parágrafos | |
| criar_paragrafo_formatado, | |
| add_body_text, | |
| add_placeholder_text, | |
| add_bullet_text, | |
| # Títulos | |
| add_section_title, | |
| add_subsection_title, | |
| add_subsubsection_title, | |
| add_subsubsubsection_title, | |
| # Tabelas | |
| add_simple_table, | |
| formatar_celula_tabela, | |
| configurar_linha_tabela_altura, | |
| criar_celula_cabecalho_tabela, | |
| criar_celula_dados_tabela, | |
| ) | |
| __all__ = [ | |
| 'NumeradorSecoes', | |
| 'LaudoGenerator', | |
| 'criar_paragrafo_formatado', | |
| 'add_body_text', | |
| 'add_placeholder_text', | |
| 'add_bullet_text', | |
| 'add_section_title', | |
| 'add_subsection_title', | |
| 'add_subsubsection_title', | |
| 'add_subsubsubsection_title', | |
| 'add_simple_table', | |
| 'formatar_celula_tabela', | |
| 'configurar_linha_tabela_altura', | |
| 'criar_celula_cabecalho_tabela', | |
| 'criar_celula_dados_tabela', | |
| ] | |