(self, context: MarkdownContext)
| 94 | style_name = "none" |
| 95 | |
| 96 | def on_enter(self, context: MarkdownContext) -> None: |
| 97 | self.style = context.enter_style(self.style_name) |
| 98 | self.text = Text(justify="left") |
| 99 | |
| 100 | def on_text(self, context: MarkdownContext, text: TextType) -> None: |
| 101 | self.text.append(text, context.current_style if isinstance(text, str) else None) |
nothing calls this directly
no test coverage detected