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