X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/2c73c162844627d26991915fecc7e39f02bc34b8..cf4dc6946d3afec0ed5dea88c8d833c017d97bf0:/librarian/xslt/book2html.xslt diff --git a/librarian/xslt/book2html.xslt b/librarian/xslt/book2html.xslt index 499a1dc..715490e 100644 --- a/librarian/xslt/book2html.xslt +++ b/librarian/xslt/book2html.xslt @@ -112,6 +112,24 @@ <div class="motto"><xsl:apply-templates /></div> </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="$gallery" /><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> + <!-- ========================================== --> <!-- = PARAGRAPH TAGS = --> @@ -231,6 +249,20 @@ <p class="motto_podpis"><xsl:apply-templates mode="inline" /></p> </xsl:template> +<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="mat"> + <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math> +</xsl:template> + <!-- ================================================ --> <!-- = INLINE TAGS = --> @@ -244,7 +276,7 @@ <!-- Other inline tags --> <xsl:template match="mat" mode="inline"> - <em class="math"><xsl:apply-templates mode="inline" /></em> + <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math> </xsl:template> <xsl:template match="didask_tekst" mode="inline"> @@ -340,6 +372,7 @@ <xsl:template match="extra|uwaga" mode="inline" /> <xsl:template match="nota_red" /> +<xsl:template match="abstrakt" /> <!-- ======== --> <!-- = TEXT = -->