Added handling of sekcja_swiatlo and motto tags.
authorMarek Stępniowski <marek@stepniowski.com>
Sun, 31 Aug 2008 13:08:02 +0000 (15:08 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Sun, 31 Aug 2008 13:08:02 +0000 (15:08 +0200)
bin/book2html.xslt
bin/master.css

index 86d27d6..940351c 100644 (file)
     <blockquote><xsl:apply-templates /></blockquote>
 </xsl:template>
 
-</xsl:stylesheet>
\ No newline at end of file
+<xsl:template match="motto">
+    <p class="motto"><xsl:apply-templates mode="inline" /></p>
+</xsl:template>
+
+<xsl:template match="sekcja_swiatlo">
+    <hr class="spacer" />
+</xsl:template>
+
+</xsl:stylesheet>
index c3613d5..f6ee64f 100644 (file)
@@ -121,7 +121,15 @@ p.paragraph {
     margin: 1.5em 0 0;
 }
 
+p.motto {
+    font-style: italic;
+}
+
 div.fragment {
     border-bottom: 0.1em solid #999;
     padding-bottom: 1.5em;
 }
+
+hr.spacer {
+    height: 3em;
+}