UNPKG

dina-agi

Version:

DINA AGI - Dynamic Intelligence Network Architecture. 128 Autonomous Agents with Claude Flow, Swarms, and 300+ MCPs. True AGI System.

12 lines (10 loc) 289 B
export default function inline (state) { const tokens = state.tokens // Parse inlines for (let i = 0, l = tokens.length; i < l; i++) { const tok = tokens[i] if (tok.type === 'inline') { state.md.inline.parse(tok.content, state.md, state.env, tok.children) } } }