(self, context: MarkdownContext)
| 147 | return cls(token.tag) |
| 148 | |
| 149 | def on_enter(self, context: MarkdownContext) -> None: |
| 150 | self.text = Text() |
| 151 | context.enter_style(self.style_name) |
| 152 | |
| 153 | def __init__(self, tag: str) -> None: |
| 154 | self.tag = tag |
no test coverage detected