2.1.0 • Published 7 months ago
@renoun/mdx v2.1.0
@renoun/mdx
A set of opinionated MDX plugins for remark and rehype.
Installation
First, install @renoun/mdx using your preferred package manager:
npm install @renoun/mdxUsage
To use the plugins, you can add them to your MDX configuration. For example, in Next.js you can add the following to your next.config.mjs:
import createMDXPlugin from '@next/mdx'
import { remarkPlugins, rehypePlugins } from '@renoun/mdx'
const withMDX = createMDXPlugin({
extension: /\.mdx?$/,
options: {
remarkPlugins,
rehypePlugins,
},
})
export default withMDX({
output: 'export',
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
})