match="processing-instruction()"
File: Data.xml
<?xml-stylesheet href="headlines.css" type="text/css"?>
<verse>text</verse>
<?smellPlugIn scent="newCar" duration="12secs"?>
File: Transform.xslt
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes" indent="no" />
<xsl:template match="processing-instruction()">
<xsl:copy />
</xsl:template>
</xsl:stylesheet>
Output:
<?xml-stylesheet scent="newCar" duration="12secs"?>text<?smellPlugIn scent="newCar" duration="12secs"?>
Related examples in the same category