From f26f70060cd31f7d967da83b90e53a87249bd9f3 Mon Sep 17 00:00:00 2001 From: Louis Knight-Webb Date: Sat, 4 Oct 2025 22:25:35 +0100 Subject: [PATCH] Markdown renderer bug (vibe-kanban) (#940) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Done! Fixed the markdown renderer bug with a simple one-line change plus typo fix. All type checks pass. **Changes made:** 1. Added `disableParsingRawHTML: true` to prevent invalid ref attributes from raw HTML 2. Fixed typo: `text-baseleading-tight` → `text-base leading-tight` * Cleanup script changes for task attempt 67d094ca-1a5f-4713-b595-26fce3aea3ef --- frontend/src/components/ui/markdown-renderer.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/ui/markdown-renderer.tsx b/frontend/src/components/ui/markdown-renderer.tsx index 81f0a96e..0045494b 100644 --- a/frontend/src/components/ui/markdown-renderer.tsx +++ b/frontend/src/components/ui/markdown-renderer.tsx @@ -152,7 +152,7 @@ function MarkdownRenderer({ }, h2: { component: ({ children, ...props }: any) => ( -

+

{children}

), @@ -244,7 +244,9 @@ function MarkdownRenderer({ )}
- {content} + + {content} +
);