import { detachNodeFromParent } from '../lib/xast.js'; export const name = 'removeXMLProcInst'; export const description = 'removes XML processing instructions'; /** * Remove XML Processing Instruction. * * @example * * * @author Kir Belevich * * @type {import('./plugins-types.js').Plugin<'removeXMLProcInst'>} */ export const fn = () => { return { instruction: { enter: (node, parentNode) => { if (node.name === 'xml') { detachNodeFromParent(node, parentNode); } }, }, }; };