New EPUB builder, other minor changes.
[librarian.git] / src / librarian / elements / headers / podtytul_czesc.py
index 9825211..df8fd5c 100644 (file)
@@ -7,3 +7,11 @@ class PodtytulCzesc(WLElement):
 
     HTML_TAG = "div"
     HTML_CLASS = "subtitle2"
+
+    EPUB_TAG = "h2"
+    EPUB_CLASS = "h2"
+
+    def _epub_build_inner(self, builder):
+        builder.start_element('small', {})
+        super()._epub_build_inner(builder)
+        builder.end_element()