Mega Code Archive

 
Categories / XML / XSLT StyleSheet
 

Match comment

File: Data.xml <verse>test</verse> File: Transform.xslt <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   version="1.0">   <xsl:output omit-xml-declaration="yes" />   <xsl:template match="comment()">     <doc>       <xsl:value-of select="." />     </doc>   </xsl:template>   <xsl:template match="verse">     <p>       <xsl:apply-templates />     </p>   </xsl:template> </xsl:stylesheet> Output: <p>test</p>