Spaces:
Sleeping
Sleeping
| """ | |
| Formatadores de documentos DOCX. | |
| """ | |
| from .paragraph import ( | |
| aplicar_cor_run, | |
| criar_paragrafo_formatado, | |
| add_body_text, | |
| add_placeholder_text, | |
| add_bullet_text, | |
| ) | |
| from .heading import ( | |
| add_heading_custom, | |
| add_section_title, | |
| add_subsection_title, | |
| add_subsubsection_title, | |
| add_subsubsubsection_title, | |
| ) | |
| from .table import ( | |
| set_cell_shading, | |
| formatar_celula_tabela, | |
| add_simple_table, | |
| configurar_linha_tabela_altura, | |
| criar_celula_cabecalho_tabela, | |
| criar_celula_dados_tabela, | |
| ) | |
| from .image import ( | |
| inserir_imagem_de_documento, | |
| add_image_placeholder, | |
| ) | |
| from .section import ( | |
| iniciar_secao_paisagem, | |
| iniciar_secao_retrato, | |
| ) | |
| __all__ = [ | |
| # Parágrafos | |
| 'aplicar_cor_run', | |
| 'criar_paragrafo_formatado', | |
| 'add_body_text', | |
| 'add_placeholder_text', | |
| 'add_bullet_text', | |
| # Títulos | |
| 'add_heading_custom', | |
| 'add_section_title', | |
| 'add_subsection_title', | |
| 'add_subsubsection_title', | |
| 'add_subsubsubsection_title', | |
| # Tabelas | |
| 'set_cell_shading', | |
| 'formatar_celula_tabela', | |
| 'add_simple_table', | |
| 'configurar_linha_tabela_altura', | |
| 'criar_celula_cabecalho_tabela', | |
| 'criar_celula_dados_tabela', | |
| # Imagens | |
| 'inserir_imagem_de_documento', | |
| 'add_image_placeholder', | |
| # Seções | |
| 'iniciar_secao_paisagem', | |
| 'iniciar_secao_retrato', | |
| ] | |