(self, parser: Any = None)
| 58 | __output__ = "html" |
| 59 | |
| 60 | def __init__(self, parser: Any = None): |
| 61 | self.rules = { |
| 62 | k: v |
| 63 | for k, v in inspect.getmembers(self, predicate=inspect.ismethod) |
| 64 | if not (k.startswith("render") or k.startswith("_")) |
| 65 | } |
| 66 | |
| 67 | def render( |
| 68 | self, tokens: Sequence[Token], options: OptionsDict, env: EnvType |
nothing calls this directly
no outgoing calls
no test coverage detected