(state, silent)
| 96 | hit_positions = [] |
| 97 | |
| 98 | def w_rule(state, silent): |
| 99 | if state.src[state.pos] != "w": |
| 100 | return False |
| 101 | hit_positions.append(state.pos) |
| 102 | state.pos += 1 |
| 103 | return True |
| 104 | |
| 105 | def _plugin(_md: MarkdownIt) -> None: |
| 106 | _md.inline.add_terminator_char("w") |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…