]> granicus.if.org Git - docbook-dsssl/commitdiff
Added comment to endnotes code.
authorMichael Smith <xmldoc@users.sourceforge.net>
Tue, 19 Jun 2007 13:24:47 +0000 (13:24 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Tue, 19 Jun 2007 13:24:47 +0000 (13:24 +0000)
xsl/manpages/endnotes.xsl

index 2b44d8cc1ece327b5edd564bb473186128a95b5d..6bafc04c255e74c787d0ab887d384867958f0c3f 100644 (file)
         <!-- * display that content -->
         <xsl:choose>
           <xsl:when test="*/node()[name(.)!='']">
+            <!-- * if node is not text only, then process it as-is -->
             <xsl:apply-templates select="*/node()"/>
           </xsl:when>
           <xsl:otherwise>
+            <!-- * otherwise node is text-only, so normalize it -->
             <xsl:value-of select="normalize-space(*/node())"/>
           </xsl:otherwise>
         </xsl:choose>