Mutable state passed through the core rules chain.
interface StateCore { src: string; env: Env; tokens: Token[]; inlineMode: boolean; md: MarkdownIt; Token: typeof Token;}
src: string
env: Env
tokens: Token[] = []
inlineMode: boolean = false
md: MarkdownIt
Token: typeof Token = Token
Mutable state passed through the core rules chain.