0.1.1 • Published 9 months ago

@omnidoc/mdx-plugins v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

@omnidoc/mdx-plugins

A set of opinionated MDX plugins for remark and rehype.

Installation

First, install @omnidoc/mdx-plugins using your preferred package manager:

npm install @omnidoc/mdx-plugins

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 '@omnidoc/mdx-plugins'

const withMDX = createMDXPlugin({
  extension: /\.mdx?$/,
  options: {
    remarkPlugins,
    rehypePlugins,
  },
})

export default withMDX({
  output: 'export',
  pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'md', 'mdx'],
})

License

MIT © souporserious