(self, style_args: StyleArg)
| 467 | return cls(slide_idx, shape_idx, style, None, text_frame, slide_area, level) |
| 468 | |
| 469 | def to_html(self, style_args: StyleArg) -> str: |
| 470 | |
| 471 | return ( |
| 472 | f"{self.indent}<div{self.get_inline_style(style_args)}>\n" |
| 473 | + self.text_frame.to_html(style_args) |
| 474 | + f"\n{self.indent}</div>\n" |
| 475 | ) |
| 476 | |
| 477 | |
| 478 | class Picture(ShapeElement): |
nothing calls this directly
no test coverage detected