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

Function inline

markdown_it/rules_core/inline.py:4–10  ·  view source on GitHub ↗

Parse inlines

(state: StateCore)

Source from the content-addressed store, hash-verified

2
3
4def inline(state: StateCore) -> None:
5 """Parse inlines"""
6 for token in state.tokens:
7 if token.type == "inline":
8 if token.children is None:
9 token.children = []
10 state.md.inline.parse(token.content, state.md, state.env, token.children)

Callers

nothing calls this directly

Calls 1

parseMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…