br
[librarian.git] / src / librarian / elements / tools / __init__.py
index 99f81d9..1028ce4 100644 (file)
@@ -5,7 +5,8 @@ from ..base import WLElement
 
 
 class Numeracja(WLElement):
-    pass
+    def build_epub(self, builder):
+        builder.numbering = 0
 
 
 class Rownolegle(WLElement):
@@ -36,3 +37,12 @@ class Tab(WLElement):
 
     get_epub_attr = get_html_attr
 
+
+class Audio(WLElement):
+    def build_epub(self, builder):
+        return
+
+
+class Br(WLElement):
+    TXT_SUFFIX = "\n"
+    EPUB_TAG = HTML_TAG = "br"