fnp
/
librarian.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
df1f563fd0d924273abc73b664f3cbfcd292f1fa
[librarian.git]
/
src
/
librarian
/
elements
/
poetry
/
wers_cd.py
1
from .wers import Wers
2
3
class WersCd(Wers):
4
def _txt_build_inner(self, builder):
5
builder.push_text(' ' * 24, prepared=True)
6
super(WersCd, self)._txt_build_inner(builder)
7
8
HTML_ATTR = {
9
"style": "padding-left: 12em",
10
}
11
12
EPUB_ATTR = {
13
"style": "margin-left: 12em",
14
}