mirror of
https://github.com/svg/svgo.git
synced 2025-04-19 10:22:15 +03:00
27 lines
577 B
JavaScript
27 lines
577 B
JavaScript
import { detachNodeFromParent } from '../lib/xast.js';
|
|
|
|
export const name = 'removeXMLProcInst';
|
|
export const description = 'removes XML processing instructions';
|
|
|
|
/**
|
|
* Remove XML Processing Instruction.
|
|
*
|
|
* @example
|
|
* <?xml version="1.0" encoding="utf-8"?>
|
|
*
|
|
* @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);
|
|
}
|
|
},
|
|
},
|
|
};
|
|
};
|