Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / elements / headers / naglowek_podrozdzial.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 NaglowekPodrozdzial(WLElement):
8     SECTION_PRECEDENCE = 3
9     SHOULD_HAVE_ID = True
10
11     TXT_TOP_MARGIN = 3
12     TXT_BOTTOM_MARGIN = 2
13     TXT_LEGACY_TOP_MARGIN = 3
14     TXT_LEGACY_BOTTOM_MARGIN = 0
15
16     HTML_TAG = "h4"
17
18     EPUB_TAG = "h2"
19     EPUB_CLASS = "h4"