const Mdx_Module = {
Card,
Cards,
Callout,
img: Image as any,
strong: Strong,
blockquote: Blockquote,
pre: CodeBlock,
tr: Tr,
th: Th,
td: Td,
table: Table,
hr: Hr,
figcaption: FigCaption,
};
const options = {
keepBackground: true,
theme: {
dark: 'dracula',
light: 'github-light',
},
defaultLang: {
block: 'js',
inline: 'js',
},
};
const Mdx_Body = async ({ content }: { content: string }) => {
return (
<MDXRemote
options={{
mdxOptions: {
remarkPlugins: [
// GitHub Flavored Markdown
remarkGfm,
// Accessibility for emojis
remarkA11yEmoji,
// Line breaks in MDX
remarkBreaks,
],
rehypePlugins: [
// Pretty Code Block (Shiki)
[rehypePrettyCode, options],
rehypeSlug,
],
format: 'mdx',
},
}}
source={content}
components={Mdx_Module}
/>
);
};
export default Mdx_Body;