X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/bff2d052aa898fc0fccaeda82da1fa699ccdabbb..79230e21a2ae6dfd3d5c488709af255a7f86e2bb:/librarian/fb2/paragraphs.xslt diff --git a/librarian/fb2/paragraphs.xslt b/librarian/fb2/paragraphs.xslt index 01943a3..ed90d2a 100644 --- a/librarian/fb2/paragraphs.xslt +++ b/librarian/fb2/paragraphs.xslt @@ -13,12 +13,47 @@ <!-- in paragraph mode --> - <xsl:template mode="para" match="akap|akap_dialog"> + <xsl:template mode="para" match="akap|akap_dialog|akap_cd|motto_podpis"> <!-- paragraphs & similar --> <p><xsl:apply-templates mode="inline"/></p> </xsl:template> + <xsl:template mode="para" match="dlugi_cytat|motto|dedykacja|nota"> + <cite><xsl:apply-templates mode="para"/></cite> + </xsl:template> + + <xsl:template mode="para" match="srodtytul"> + <p><strong><xsl:apply-templates mode="inline"/></strong></p> + </xsl:template> + + <xsl:template mode="para" match="sekcja_swiatlo"> + <empty-line/><empty-line/><empty-line/> + </xsl:template> + + <xsl:template mode="para" match="sekcja_asterysk"> + <empty-line/><p>*</p><empty-line/> + </xsl:template> + + <xsl:template mode="para" match="separator_linia"> + <empty-line/><p>ââââââââ</p><empty-line/> + </xsl:template> + + <xsl:template mode="para" match="tabela|tabelka"> + <table><xsl:apply-templates mode="para" /></table> + </xsl:template> + <xsl:template mode="para" match="wiersz"> + <tr><xsl:apply-templates mode="para" /></tr> + </xsl:template> + <xsl:template mode="para" match="kol"> + <td><xsl:apply-templates mode="inline" /></td> + </xsl:template> + + <xsl:template mode="para" match="ramka"> + <xsl:apply-templates mode="para" /> + </xsl:template> + + <xsl:template mode="para" match="*"/> <xsl:template mode="sections" match="*"/> </xsl:stylesheet>