X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/d04e61819290fc8d6d71b1932c55a774014c1f05..eb25cada3f68db8f58689bff431edd321620fd72:/src/librarian/elements/headers/podtytul_rozdzial.py?ds=inline diff --git a/src/librarian/elements/headers/podtytul_rozdzial.py b/src/librarian/elements/headers/podtytul_rozdzial.py index 675e19b..f24fba7 100644 --- a/src/librarian/elements/headers/podtytul_rozdzial.py +++ b/src/librarian/elements/headers/podtytul_rozdzial.py @@ -1,9 +1,22 @@ +# 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 HTML_TAG = "div" HTML_CLASS = "subtitle3" + + EPUB_TAG = "h2" + EPUB_CLASS = "h3" + + def _epub_build_inner(self, builder): + builder.start_element('small', {}) + super()._epub_build_inner(builder) + builder.end_element()