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