MCPcopy Create free account
hub / github.com/executablebooks/markdown-it-py / postProcess

Function postProcess

markdown_it/rules_inline/emphasis.py:96–102  ·  view source on GitHub ↗

Walk through delimiter list and replace text tokens with tags.

(state: StateInline)

Source from the content-addressed store, hash-verified

94
95
96def 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"])

Callers

nothing calls this directly

Calls 1

_postProcessFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…