🩹(summary) fix bold markdown syntax

Wrong syntaxt to handle bold, instead was italic.
This commit is contained in:
lebaudantoine
2025-04-03 23:09:28 +02:00
committed by aleb_the_flash
parent 6324be9fd3
commit 00eb52cd3f

View File

@@ -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