(self, context: MarkdownContext)
| 101 | self.text.append(text, context.current_style if isinstance(text, str) else None) |
| 102 | |
| 103 | def on_leave(self, context: MarkdownContext) -> None: |
| 104 | context.leave_style() |
| 105 | |
| 106 | |
| 107 | class Paragraph(TextElement): |
no test coverage detected