(self, style_args: StyleArg)
| 823 | ) |
| 824 | |
| 825 | def to_html(self, style_args: StyleArg) -> str: |
| 826 | textframe = self.text_frame.to_html(style_args) |
| 827 | if not textframe: |
| 828 | return "" |
| 829 | return ( |
| 830 | f"{self.indent}<div data-shape-type='{self.data['svg_tag']}'{self.get_inline_style(style_args)}>" |
| 831 | + f"\n{textframe}" |
| 832 | + f"\n{self.indent}</div>" |
| 833 | ) |
| 834 | |
| 835 | |
| 836 | class Connector(ShapeElement): |
nothing calls this directly
no test coverage detected