+<xsl:template match="mat">
+ <img xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:attribute name="src">
+ <xsl:value-of select="wl:mathml(.)" />
+ </xsl:attribute>
+ </img>
+</xsl:template>
+
+<xsl:template match="tabela|tabelka">
+ <table xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates />
+ </table>
+</xsl:template>
+<xsl:template match="wiersz">
+ <tr xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates />
+ </tr>
+</xsl:template>
+<xsl:template match="kol">
+ <td xmlns="http://www.w3.org/1999/xhtml">
+ <xsl:apply-templates />
+ </td>
+</xsl:template>
+
+