Line lengths

main
Bob Mottram 2020-07-26 09:48:13 +01:00
parent 286c9c1d6f
commit f614694738
1 changed files with 4 additions and 2 deletions

View File

@ -5508,7 +5508,8 @@ def htmlPersonOptions(translate: {}, baseDir: str,
optionsStr += ' <div class="optionsAvatar">\n' optionsStr += ' <div class="optionsAvatar">\n'
optionsStr += ' <center>\n' optionsStr += ' <center>\n'
optionsStr += ' <a href="' + optionsActor + '">\n' optionsStr += ' <a href="' + optionsActor + '">\n'
optionsStr += ' <img loading="lazy" src="' + optionsProfileUrl + '"/></a>\n' optionsStr += ' <img loading="lazy" src="' + optionsProfileUrl + \
'"/></a>\n'
optionsStr += \ optionsStr += \
' <p class="optionsText">' + translate['Options for'] + \ ' <p class="optionsText">' + translate['Options for'] + \
' @' + getNicknameFromActor(optionsActor) + '@' + \ ' @' + getNicknameFromActor(optionsActor) + '@' + \
@ -5521,7 +5522,8 @@ def htmlPersonOptions(translate: {}, baseDir: str,
if xmppAddress: if xmppAddress:
optionsStr += \ optionsStr += \
'<p class="imText">' + translate['XMPP'] + \ '<p class="imText">' + translate['XMPP'] + \
': <a href="xmpp:' + xmppAddress + '">' + xmppAddress + '</a></p>\n' ': <a href="xmpp:' + xmppAddress + '">' + \
xmppAddress + '</a></p>\n'
if matrixAddress: if matrixAddress:
optionsStr += \ optionsStr += \
'<p class="imText">' + translate['Matrix'] + ': ' + \ '<p class="imText">' + translate['Matrix'] + ': ' + \