From ca4885301adbdca1c426d577ad002c255cebff6d Mon Sep 17 00:00:00 2001 From: kbot Date: Mon, 6 Jul 2026 22:06:19 -0500 Subject: [PATCH] mdx: square radii, quiet blockquotes --- mdx-components.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mdx-components.tsx b/mdx-components.tsx index fde8fb6..2edfac1 100644 --- a/mdx-components.tsx +++ b/mdx-components.tsx @@ -37,11 +37,11 @@ export function useMDXComponents(components: MDXComponents): MDXComponents {

), blockquote: ({ children }) => ( -
+
{children}
), - hr: () =>
, + hr: () =>
, a: ({ href, children, ...props }) => { const isExternal = typeof href === 'string' && (href.startsWith('http://') || href.startsWith('https://')) return ( @@ -80,14 +80,14 @@ export function useMDXComponents(components: MDXComponents): MDXComponents { {alt ), table: ({ children }) => ( -
+
{children}
@@ -113,7 +113,7 @@ export function useMDXComponents(components: MDXComponents): MDXComponents { ), // Collapsible sections - details: (props) =>
, + details: (props) =>
, summary: (props) => , } }