Version 1.3.1dev.
[librarian.git] / librarian / xslt / 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="0" />
8     
9     <xsl:include href="wl2html_base.xslt" />    
10     
11     <xsl:output
12         encoding="utf-8"
13         indent="yes"
14         omit-xml-declaration = "yes" />
15
16     <xsl:template match="/">
17         <chunk>
18         <xsl:apply-templates select="//chunk/child::node()" mode="element-tag">
19             <xsl:with-param name="offset" select="$base-offset" />
20             <xsl:with-param name="parent-path" select="$base-path" />
21             <xsl:with-param name="mixed" select="true()" />
22         </xsl:apply-templates>
23         </chunk>
24     </xsl:template>    
25     
26 </xsl:stylesheet>