/** * @import {Element} from 'hast' * @import {ThematicBreak} from 'mdast' * @import {State} from '../state.js' */ /** * Turn an mdast `thematicBreak` node into hast. * * @param {State} state * Info passed around. * @param {ThematicBreak} node * mdast node. * @returns {Element} * hast node. */ export function thematicBreak(state, node) { /** @type {Element} */ const result = { type: 'element', tagName: 'hr', properties: {}, children: [] } state.patch(node, result) return state.applyData(node, result) }