/** * @typedef {import('hast').Element} Element * @typedef {import('hast').Text} Text * @typedef {import('mdast').InlineCode} InlineCode * @typedef {import('../state.js').State} State */ // Make VS Code show references to the above types. '' /** * Turn an mdast `inlineCode` node into hast. * * @param {State} state * Info passed around. * @param {InlineCode} node * mdast node. * @returns {Element} * hast node. */ export function inlineCode(state, node) { /** @type {Text} */ const text = {type: 'text', value: node.value.replace(/\r?\n|\r/g, ' ')} state.patch(node, text) /** @type {Element} */ const result = { type: 'element', tagName: 'code', properties: {}, children: [text] } state.patch(node, result) return state.applyData(node, result) }