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'], })