Sign in
fuchsia
/
third_party
/
github.com
/
executablebooks
/
markdown-it-py
/
a7c3cf48996b5ae7f9d051089e3298532d147f25
/
.
/
markdown_it
/
rules_core
/
inline.py
blob: 232d145acfafd79b3487d1bbd22fc46871e40792 [
file
] [
log
] [
blame
]
from
.
state_core
import
StateCore
def
inline
(
state
:
StateCore
):
"""Parse inlines"""
for
token
in
state
.
tokens
:
if
token
.
type
==
"inline"
:
state
.
md
.
inline
.
parse
(
token
.
content
,
state
.
md
,
state
.
env
,
token
.
children
)