// Core state object // 'use strict'; module.exports = function StateCore(src, md, env) { this.src = src; this.env = env; this.tokens = []; this.inlineMode = false; this.normalizeInput = true; this.md = md; // link to parser instance };