Urara-Blog/node_modules/.pnpm-store/v3/files/c9/5fb92a0b7882bdbeed98c33625c2d880a43485cdfc2f489817726150a6813fb88ae099ac543a247820ec28a0bac44c3885292bbce95f6e8a8357bd3ce1eed9
2022-08-14 01:14:53 +08:00

30 lines
610 B
Text

'use strict';
const { detachNodeFromParent } = require('../lib/xast.js');
exports.name = 'removeXMLProcInst';
exports.type = 'visitor';
exports.active = true;
exports.description = 'removes XML processing instructions';
/**
* Remove XML Processing Instruction.
*
* @example
* <?xml version="1.0" encoding="utf-8"?>
*
* @author Kir Belevich
*
* @type {import('../lib/types').Plugin<void>}
*/
exports.fn = () => {
return {
instruction: {
enter: (node, parentNode) => {
if (node.name === 'xml') {
detachNodeFromParent(node, parentNode);
}
},
},
};
};