Added ul/ol/li (copy & apply-template)

git-svn-id: svn://svn.c3d2.de/c3d2-web/trunk@166 31f61c52-7bfb-0310-b897-fc00f8a278f0
This commit is contained in:
mark 2006-04-09 19:36:13 +00:00
parent 038840ad09
commit d8c788f03d
1 changed files with 12 additions and 0 deletions

View File

@ -33,6 +33,18 @@
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<xsl:template match="ul">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<xsl:template match="ol">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<xsl:template match="li">
<xsl:copy><xsl:apply-templates/></xsl:copy>
</xsl:template>
<xsl:template match="image">
<xsl:element name="img">
<xsl:attribute name="src"><xsl:value-of select="."/></xsl:attribute>