Don't embolden emoji strings

merge-requests/30/head
Bob Mottram 2022-03-24 13:38:10 +00:00
parent 7816f28833
commit d0f6ddd296
1 changed files with 3 additions and 1 deletions

View File

@ -1339,7 +1339,9 @@ def bold_reading_string(text: str) -> str:
words = parag.split(' ')
new_parag = ''
for wrd in words:
if len(wrd) > 1 and '<' not in wrd and '>' not in wrd:
if len(wrd) > 1 and \
'<' not in wrd and '>' not in wrd and \
not wrd.startswith(':'):
initial_chars = int(len(wrd) / 2)
new_parag += \
'<b>' + wrd[:initial_chars] + '</b>' + \