(
self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType
)
| 329 | return self.renderToken(tokens, idx, options, env) |
| 330 | |
| 331 | def hardbreak( |
| 332 | self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType |
| 333 | ) -> str: |
| 334 | return "<br />\n" if options.xhtmlOut else "<br>\n" |
| 335 | |
| 336 | def softbreak( |
| 337 | self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType |
nothing calls this directly
no outgoing calls
no test coverage detected