Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / separators / sekcja_swiatlo.py
index 1526548..805078e 100644 (file)
@@ -1,3 +1,6 @@
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
 from ..base import WLElement
 
 
@@ -5,3 +8,11 @@ class SekcjaSwiatlo(WLElement):
     TXT_BOTTOM_MARGIN = 6
     TXT_LEGACY_BOTTOM_MARGIN = 4
 
+    HTML_TAG = "hr"
+    HTML_CLASS = "spacer"
+
+    EPUB_TAG = 'p'
+    EPUB_CLASS = 'spacer'
+
+    def _epub_build_inner(self, builder):
+        builder.push_text("\u00a0")