From f79ab0d9a6854cc70c0c9e18930e7ded193b0800 Mon Sep 17 00:00:00 2001
From: Jirka Kosek <jirka@kosek.cz>
Date: Thu, 7 Jun 2001 20:15:20 +0000
Subject: [PATCH] Things preceding steps in procedure are placed before OL
 list.

---
 xsl/html/lists.xsl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/xsl/html/lists.xsl b/xsl/html/lists.xsl
index 25a996660..7a9d1c359 100644
--- a/xsl/html/lists.xsl
+++ b/xsl/html/lists.xsl
@@ -412,7 +412,8 @@
     <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>
 
-- 
2.40.0