1 <xsl:stylesheet version="1.0"
2 xmlns="http://www.w3.org/1999/xhtml"
3 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
5 <xsl:param name="with-paths" select="boolean(0)" />
6 <xsl:param name="base-path" select="'.'"/>
7 <xsl:param name="base-offset" select="0" />
9 <xsl:include href="wl2html_base.xslt" />
14 omit-xml-declaration = "yes" />
16 <xsl:template match="/">
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>