div instread of p

main
Bob Mottram 2020-10-01 11:06:44 +01:00
parent 20a8a7a38c
commit 4473292ceb
1 changed files with 2 additions and 2 deletions

View File

@ -5003,9 +5003,9 @@ def individualPostAsHtml(allowDownloads: bool,
postHtml = ' <div id="' + timelinePostBookmark + \
'" class="' + containerClass + '">\n'
postHtml += avatarImageInPost
postHtml += ' <p class="post-title">\n' + \
postHtml += ' <div class="post-title">\n' + \
' ' + titleStr + \
replyAvatarImageInPost + ' </p>\n'
replyAvatarImageInPost + ' </div>\n'
postHtml += contentStr + footerStr + '\n'
postHtml += ' </div>\n'
else: