🩹(summary) fix bold markdown syntax
Wrong syntaxt to handle bold, instead was italic.
This commit is contained in:
committed by
aleb_the_flash
parent
6324be9fd3
commit
00eb52cd3f
@@ -79,7 +79,7 @@ def format_segments(transcription_data):
|
||||
text = segment.get('text', '')
|
||||
if text:
|
||||
if speaker != previous_speaker:
|
||||
formatted_output += f"\n\n *{speaker}*: {text}"
|
||||
formatted_output += f"\n\n **{speaker}**: {text}"
|
||||
else:
|
||||
formatted_output += f" {text}"
|
||||
previous_speaker = speaker
|
||||
|
||||
Reference in New Issue
Block a user