Skip to content
Snippets Groups Projects
Commit 959085ae authored by Goik Martin's avatar Goik Martin
Browse files

Handling ILIAS HTML import

parent deb76b98
No related branches found
No related tags found
No related merge requests found
......@@ -138,12 +138,7 @@
<table border="{@border}" style="border-collapse: collapse;">
<xsl:for-each select="db:tr">
<tr>
<xsl:for-each select="db:td|db:th">
<td valign="top">
<xsl:apply-templates select="text()|*"/>
</td>
</xsl:for-each>
<xsl:apply-templates/>
</tr>
</xsl:for-each>
......@@ -152,15 +147,15 @@
</xsl:template>
<xsl:template match="db:td">
<td>
<td valign="top">
<xsl:apply-templates/>
</td>
</xsl:template>
<xsl:template match="db:th">
<th>
<td valign="top"><!-- Sigh! ILIAS HTML handling is soooo stupid! -->
<xsl:apply-templates/>
</th>
</td>
</xsl:template>
<xsl:template match="db:option">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment