(
self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType
)
| 346 | return escapeHtml(tokens[idx].content) |
| 347 | |
| 348 | def html_block( |
| 349 | self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType |
| 350 | ) -> str: |
| 351 | return tokens[idx].content |
| 352 | |
| 353 | def html_inline( |
| 354 | self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType |
nothing calls this directly
no outgoing calls
no test coverage detected