A class to represent style arguments for HTML conversion.
| 42 | # run: font, hyperlink, text |
| 43 | @dataclass |
| 44 | class StyleArg: |
| 45 | """ |
| 46 | A class to represent style arguments for HTML conversion. |
| 47 | """ |
| 48 | |
| 49 | paragraph_id: bool = True |
| 50 | element_id: bool = True |
| 51 | font_style: bool = True |
| 52 | area: bool = False |
| 53 | size: bool = False |
| 54 | geometry: bool = False |
| 55 | show_image: bool = True |
| 56 | |
| 57 | |
| 58 | @dataclass |