Add icon to indicate web links

merge-requests/30/head
Bob Mottram 2021-03-15 14:58:28 +00:00
parent a640a6f61a
commit dcde088955
1 changed files with 2 additions and 0 deletions

View File

@ -432,6 +432,8 @@ def _showLocalBox(boxName: str,
while len(content) < 40:
content += ' '
content = (content[:40]) if len(content) > 40 else content
if speakerJson.get('detectedLinks'):
content = '🔗' + content
print(indent + str(posStr) + ' | ' + str(name) + ' | ' +
str(published) + ' | ' + str(content) + ' |')
ctr += 1