(
self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType
)
| 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 |
| 338 | ) -> str: |
| 339 | return ( |
| 340 | ("<br />\n" if options.xhtmlOut else "<br>\n") if options.breaks else "\n" |
| 341 | ) |
| 342 | |
| 343 | def text( |
| 344 | self, tokens: Sequence[Token], idx: int, options: OptionsDict, env: EnvType |
nothing calls this directly
no outgoing calls
no test coverage detected