X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/d04e61819290fc8d6d71b1932c55a774014c1f05..3a0c83394d5783715fab2be29fa1a9cfc3574e28:/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 675e19b..ac455c3 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): + SHOULD_HAVE_ID = True + 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()