diff --git a/mdx-components.tsx b/mdx-components.tsx
index a286ff7..3899668 100644
--- a/mdx-components.tsx
+++ b/mdx-components.tsx
@@ -58,5 +58,27 @@ export function useMDXComponents(components: MDXComponents): MDXComponents {
),
+
+ // Lists
+ ul: (props) =>
,
+ ol: (props) =>
,
+ li: (props) => ,
+
+ // Figures and captions
+ figure: (props) => ,
+ figcaption: (props) => ,
+
+ // Subscripts and superscripts
+ sup: (props) => ,
+ sub: (props) => ,
+
+ // Keyboard keys
+ kbd: (props) => (
+
+ ),
+
+ // Collapsible sections
+ details: (props) => ,
+ summary: (props) => ,
}
}