]> granicus.if.org Git - docbook-dsssl/commitdiff
Fixed bug #424926. Things preceding steps in procedure are not placed inside OL list.
authorJirka Kosek <jirka@kosek.cz>
Sat, 2 Jun 2001 08:28:57 +0000 (08:28 +0000)
committerJirka Kosek <jirka@kosek.cz>
Sat, 2 Jun 2001 08:28:57 +0000 (08:28 +0000)
xsl/html/lists.xsl

index a9d207ee5f8821af1c2aec08691f9daa814e5f95..7b320b6c55569092ef566dd67a068720b9825f7e 100644 (file)
     <xsl:if test="title">
       <xsl:apply-templates select="title" mode="procedure.title.mode"/>
     </xsl:if>
-    <ol><xsl:apply-templates/></ol>
+    <xsl:apply-templates select="*[local-name()!='step']"/>
+    <ol><xsl:apply-templates select="step"/></ol>
   </div>
 </xsl:template>