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) => , } }