Stable version 1.2.5.
[librarian.git] / librarian / wl2html_partial.xslt
1 <xsl:stylesheet version="1.0"    
2     xmlns="http://www.w3.org/1999/xhtml"    
3     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
5     <xsl:param name="with-paths" select="boolean(0)" />
6     <xsl:param name="base-path" select="'.'"/>
7     <xsl:param name="base-offset" select="1" />    
8     
9     <xsl:include href="wl2html_base.xslt" />    
10     <xsl:output encoding="utf-8" indent="yes" omit-xml-declaration = "yes" /> 
11
12     <xsl:template match="/">
13         <xsl:message>Processing...</xsl:message>
14         <xsl:apply-templates select="/*" mode="element-tag">
15             <xsl:with-param name="offset" select="$base-offset" />
16             <xsl:with-param name="parent-path" select="$base-path" />
17         </xsl:apply-templates>
18     </xsl:template>   
19
20 </xsl:stylesheet>