blob: 8ba2f2340d4aaf94ca6f668e9d79ba9f23ee9fb1 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: select15 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 3.7 -->
<!-- Creator: David Marston -->
<!-- Purpose: NCName followed by :: must be recognized as an AxisName. -->
<xsl:template match="doc">
<out>
<xsl:for-each select="child::sub">
<xsl:value-of select="./text()"/>
</xsl:for-each>
</out>
</xsl:template>
</xsl:stylesheet>