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
d6fc2ec
..
e9d0208
100644
(file)
--- a/
src/librarian/elements/headers/podtytul_podrozdzial.py
+++ b/
src/librarian/elements/headers/podtytul_podrozdzial.py
@@
-1,8
+1,11
@@
+# 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):
- SHOULD_HAVE_ID = True
+ NUMBERING = 'i'
TXT_TOP_MARGIN = 2
TXT_BOTTOM_MARGIN = 2
TXT_TOP_MARGIN = 2
TXT_BOTTOM_MARGIN = 2
@@
-13,7
+16,7
@@
class PodtytulPodrozdzial(WLElement):
EPUB_TAG = "h2"
EPUB_CLASS = "h4"
EPUB_TAG = "h2"
EPUB_CLASS = "h4"
- def
_
epub_build_inner(self, builder):
+ def epub_build_inner(self, builder):
builder.start_element('small', {})
builder.start_element('small', {})
- super().
_
epub_build_inner(builder)
+ super().epub_build_inner(builder)
builder.end_element()
builder.end_element()