From 00eb52cd3fd7fa53b0bcb419a009a7243f32e4ce Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 3 Apr 2025 23:09:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(summary)=20fix=20bold=20markdown?= =?UTF-8?q?=20syntax?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wrong syntaxt to handle bold, instead was italic. --- src/summary/summary/core/celery_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/summary/summary/core/celery_worker.py b/src/summary/summary/core/celery_worker.py index ad637f4c..d6d13a34 100644 --- a/src/summary/summary/core/celery_worker.py +++ b/src/summary/summary/core/celery_worker.py @@ -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