rejoin the comments

This commit is contained in:
cellarspoon 2021-12-17 18:00:18 +01:00
parent 64dbcf16ed
commit 8fb8648827
No known key found for this signature in database
GPG Key ID: 03789458B3D0C410

View File

@ -65,7 +65,8 @@ def select_fields(fields, content, styles, book):
content.append(Spacer(1, 12))
if "comments" in fields:
comments = " ".join([c.text for c in book.comments]).split()[:NUM_WORDS_COMMENT]
trimmed = " ".join([c.text for c in book.comments]).split()[:NUM_WORDS_COMMENT]
comments = " ".join(trimmed)
tag = "<font size=10>{}</font>".format(comments)
pcomments = Paragraph(strip_tags(tag))
content.append(pcomments)