Nylon Technology Presentation: Introduction To XSLT And XmlTransform() In ColdFusion

<!--- Wild cards. --->
<xsl:template match="*">
 
<!--- Descendents. --->
<xsl:template match="toes/toe">
 
<!--- Any parent. --->
<xsl:template match="//toe">
 
<!--- Text nodes. --->
<xsl:template match="text()">
 
<!--- Predeciate matching. --->
<xsl:template match="//toe[ 2 ]">

For Cut-and-Paste