from librarian.parser import WLDocument
from librarian import ParseError, DCNS, get_resource, OutputFile
from librarian import functions
-from librarian.cover import WLCover
+from librarian.cover import DefaultEbookCover
functions.reg_substitute_entities()
if cover:
if cover is True:
- cover = WLCover
+ cover = DefaultEbookCover
bound_cover = cover(book_info)
root.set('data-cover-width', str(bound_cover.width))
root.set('data-cover-height', str(bound_cover.height))
editor.readable() for editor in document.editors())))
if document.book_info.funders:
root.set('funders', u', '.join(document.book_info.funders))
+ if document.book_info.thanks:
+ root.set('thanks', document.book_info.thanks)
# hack the tree
move_motifs_inside(document.edoc)