From bbe5298a687708e5f6349beea580b862d57b99b3 Mon Sep 17 00:00:00 2001 From: pes2ug23cs446 Date: Wed, 27 May 2026 09:19:44 +0530 Subject: [PATCH] Fixed pipe character breaking markdown table rendering in README --- app/core/api_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/api_handler.py b/app/core/api_handler.py index 4c5b2f9..4ee3b22 100644 --- a/app/core/api_handler.py +++ b/app/core/api_handler.py @@ -127,7 +127,7 @@ def render_template(csv_path, template_path, today): results.append({ 'repo': row['repo'], 'language': row['language'], - 'title': row['title'], + 'title': row['title'].replace('|', '\\|'), # Escape '|' to avoid breaking markdown table rows 'url': row['url'], 'comments': row['comments'], })