From 346bf7995a58d2f7c1069346c84e93956d434a06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 16 Aug 2026 00:58:14 +0200 Subject: [PATCH] Style inline code in docs as a pill instead of literal backticks Tailwind Typography's default inline style is just bold text with decorative backtick characters added via CSS content - with docs like CONFIG_REFERENCE.md that use backticks constantly, it read as unstyled/half-parsed. Swapped it for the same muted rounded-pill look already used for inline code elsewhere in the app (e.g. the dashboard's "no scripts configured" message). Co-Authored-By: Claude Sonnet 5 --- app/src/components/docs/markdown-viewer.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/src/components/docs/markdown-viewer.tsx b/app/src/components/docs/markdown-viewer.tsx index 213ca19..3c53cb9 100644 --- a/app/src/components/docs/markdown-viewer.tsx +++ b/app/src/components/docs/markdown-viewer.tsx @@ -1,9 +1,20 @@ import ReactMarkdown from "react-markdown"; import remarkGfm from "remark-gfm"; +import { cn } from "@/lib/utils"; export function MarkdownViewer({ content }: { content: string }) { return ( -
+
{content}
);