fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Some prelim work on builder api.
[librarian.git]
/
src
/
librarian
/
elements
/
headers
/
podtytul_podrozdzial.py
diff --git
a/src/librarian/elements/headers/podtytul_podrozdzial.py
b/src/librarian/elements/headers/podtytul_podrozdzial.py
index
74aef13
..
e9d0208
100644
(file)
--- a/
src/librarian/elements/headers/podtytul_podrozdzial.py
+++ b/
src/librarian/elements/headers/podtytul_podrozdzial.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 PodtytulPodrozdzial(WLElement):
from ..base import WLElement
class PodtytulPodrozdzial(WLElement):
+ NUMBERING = 'i'
+
TXT_TOP_MARGIN = 2
TXT_BOTTOM_MARGIN = 2
HTML_TAG = "div"
HTML_CLASS = "subtitle4"
TXT_TOP_MARGIN = 2
TXT_BOTTOM_MARGIN = 2
HTML_TAG = "div"
HTML_CLASS = "subtitle4"
+
+ EPUB_TAG = "h2"
+ EPUB_CLASS = "h4"
+
+ def epub_build_inner(self, builder):
+ builder.start_element('small', {})
+ super().epub_build_inner(builder)
+ builder.end_element()