X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/db91f942ce46e3af1420f3469a83257ef5aca4c2..82c0860d1520489be56457829d49eb17f165b9cd:/src/librarian/elements/headers/podtytul_rozdzial.py diff --git a/src/librarian/elements/headers/podtytul_rozdzial.py b/src/librarian/elements/headers/podtytul_rozdzial.py index f8db548..3959007 100644 --- a/src/librarian/elements/headers/podtytul_rozdzial.py +++ b/src/librarian/elements/headers/podtytul_rozdzial.py @@ -1,7 +1,12 @@ +# 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 class PodtytulRozdzial(WLElement): + NUMBERING = 'i' + TXT_TOP_MARGIN = 2 TXT_BOTTOM_MARGIN = 2 @@ -11,7 +16,7 @@ class PodtytulRozdzial(WLElement): EPUB_TAG = "h2" EPUB_CLASS = "h3" - def _epub_build_inner(self, builder): + def epub_build_inner(self, builder): builder.start_element('small', {}) - super()._epub_build_inner(builder) + super().epub_build_inner(builder) builder.end_element()