Walk through delimiter list and replace text tokens with tags.
(state: StateInline)
| 94 | |
| 95 | |
| 96 | def postProcess(state: StateInline) -> None: |
| 97 | """Walk through delimiter list and replace text tokens with tags.""" |
| 98 | _postProcess(state, state.delimiters) |
| 99 | |
| 100 | for token in state.tokens_meta: |
| 101 | if token and "delimiters" in token: |
| 102 | _postProcess(state, token["delimiters"]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…