This stylesheet implements the XHTML List Module.
xsl:stylesheet id="stylesheet" exclude-result-prefixes="x2 lit xs" version="1.0" xml:lang="en" Definition lists Ordered lists Unordered lists
xsl:template match="x2:dl" xsl:call-template name="copy-xhtml1"
xsl:template match="x2:dt" xsl:call-template name="copy-xhtml1"
xsl:template match="x2:dd" xsl:call-template name="copy-xhtml1"
xsl:template match="x2:di" xsl:apply-templates
xsl:template match="x2:ol" xsl:call-template name="copy-xhtml1"
xsl:template match="x2:ol/x2:li" xsl:call-template name="copy-xhtml1"
xsl:template match="x2:ul" <-- <xsl:if test="parent::x2:p"> <xsl:text disable-output-escaping="yes"></p></xsl:text> </xsl:if> --> xsl:call-template name="copy-xhtml1" <-- <xsl:if test="parent::x2:p"> <xsl:text disable-output-escaping="yes"><p></xsl:text> </xsl:if> -->
xsl:template match="x2:ul/x2:li" xsl:call-template name="copy-xhtml1"
Formatted using xhtml2to1 by Steve Cheng.