Introduce src dir.
[librarian.git] / src / librarian / fb2 / drama.xslt
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3
4         This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5         Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6
7 -->
8 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9         xmlns:wl="http://wolnelektury.pl/functions"
10         xmlns:dc="http://purl.org/dc/elements/1.1/"
11         xmlns="http://www.gribuser.ru/xml/fictionbook/2.0"
12         xmlns:l="http://www.w3.org/1999/xlink">
13
14         <xsl:template mode="para" match="lista_osob">
15         <empty-line/>
16                 <xsl:apply-templates mode="para"/>
17         <empty-line/>
18         </xsl:template>
19
20         <xsl:template mode="para" match="kwestia">
21         <empty-line/>
22                 <xsl:apply-templates mode="para"/>
23         <empty-line/>
24         </xsl:template>
25
26         <xsl:template mode="para" match="lista_osoba">
27                 <p><xsl:apply-templates mode="inline"/></p>
28         </xsl:template>
29
30         <xsl:template mode="para" match="naglowek_listy|naglowek_osoba">
31                 <p><strong><xsl:apply-templates mode="inline"/></strong></p>
32         </xsl:template>
33
34         <xsl:template mode="para" match="miejsce_czas|didaskalia|didask_tekst">
35                 <p><emphasis><xsl:apply-templates mode="inline"/></emphasis></p>
36         </xsl:template>
37
38         <xsl:template mode="inline" match="didaskalia|didask_tekst">
39                 <emphasis><xsl:apply-templates mode="inline"/></emphasis>
40         </xsl:template>
41
42 </xsl:stylesheet>