+<xsl:template match="tabela">
+ <table><xsl:apply-templates /></table>
+</xsl:template>
+<xsl:template match="wiersz">
+ <tr><xsl:apply-templates /></tr>
+</xsl:template>
+<xsl:template match="kol">
+ <td><xsl:apply-templates mode="inline" /></td>
+</xsl:template>
+
+<xsl:template match="ilustr" mode="inline">
+ <xsl:apply-templates select="."/>
+</xsl:template>
+
+<xsl:template match="ilustr">
+ <img>
+ <xsl:attribute name="src">
+ <xsl:value-of select="@src" />
+ </xsl:attribute>
+ <xsl:attribute name="alt">
+ <xsl:value-of select="@alt" />
+ </xsl:attribute>
+ <xsl:attribute name="title">
+ <xsl:value-of select="@alt" />
+ </xsl:attribute>
+
+
+ </img>
+</xsl:template>
+<xsl:template match="lista[@typ='num']">
+ <ol><xsl:apply-templates /></ol>
+</xsl:template>
+<xsl:template match="lista[@typ='punkt']">
+ <ul><xsl:apply-templates /></ul>
+ </xsl:template>
+<xsl:template match="punkt">
+ <li><xsl:apply-templates mode="inline" /></li>
+ </xsl:template>
+
+
+
+
+