Process input string and push inline tokens into `tokens`
(
self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token]
)
| 204 | state.pushPending() |
| 205 | |
| 206 | def parse( |
| 207 | self, src: str, md: MarkdownIt, env: EnvType, tokens: list[Token] |
| 208 | ) -> list[Token]: |
| 209 | """Process input string and push inline tokens into `tokens`""" |
| 210 | state = StateInline(src, md, env, tokens) |
| 211 | self.tokenize(state) |
| 212 | rules2 = self.ruler2.getRules("") |
| 213 | for rule in rules2: |
| 214 | rule(state) |
| 215 | return state.tokens |
nothing calls this directly
no test coverage detected