1 <?xml version="1.0" encoding="utf-8"?>
 
   4         This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
 
   5         Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 
   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">
 
  14     <xsl:template name="section">
 
  15         <!-- All the <_section> are in the end. -->
 
  16         <xsl:if test="count(*) > count(_section)">
 
  19                     <xsl:when test="(local-name() = 'liryka_l' or local-name() = 'liryka_lp')
 
  20                                      and count(_section) = 0">
 
  22                             <xsl:apply-templates mode="para" />
 
  26                         <xsl:apply-templates mode="para" />
 
  32         <!-- Now, recursively, all the _section tags. -->
 
  33         <xsl:apply-templates mode="section" select="_section" />
 
  36     <xsl:template match="_section" mode="para" />
 
  37     <xsl:template match="_section" mode="section" >
 
  39             <xsl:call-template name="section" />
 
  43         <!-- actual headings -->
 
  44         <xsl:template match="naglowek_czesc|naglowek_rozdzial|naglowek_podrozdzial|naglowek_akt|naglowek_scena" mode="para">
 
  45                 <title><p><xsl:apply-templates mode="inline"/></p></title>