Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / separators / separator_linia.py
index 7587785..8874967 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
 
 
@@ -7,5 +10,10 @@ class SeparatorLinia(WLElement):
     TXT_LEGACY_TOP_MARGIN = 2
     TXT_LEGACY_BOTTOM_MARGIN = 2
 
+    EPUB_TAG = HTML_TAG = "hr"
+    EPUB_CLASS = HTML_CLASS = "spacer-line"
+    
     def _txt_build_inner(self, builder):
         builder.push_text('-' * 48)
+
+