(self, context: MarkdownContext, text: TextType)
| 331 | self.justify = justify |
| 332 | |
| 333 | def on_text(self, context: MarkdownContext, text: TextType) -> None: |
| 334 | if isinstance(text, str): |
| 335 | self.content.append(text, context.current_style) |
| 336 | else: |
| 337 | self.content.append_text(text) |
| 338 | |
| 339 | |
| 340 | class ListElement(MarkdownElement): |
nothing calls this directly
no test coverage detected