@renoun/mdx
v1.2.1
Published
MDX plugins for renoun
Downloads
3,683
Maintainers
Readme
@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/mdx
Usage
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'],
})