Rollup plugin for MDX
npm install @mdx-js/rollup@mdx-js/rollup[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
Rollup (and Vite) plugin for MDX.
* What is this?
* When should I use this?
* Install
* Use
* API
* mdx(options?)
* Options
* Examples
* Combine with Babel
* Types
* Compatibility
* Security
* Contribute
* License
This package is a Rollup (and Vite) plugin to support MDX.
This integration is useful if you’re using Rollup (or another tool that uses
Rollup, such as Vite).
This integration can be combined with the Babel plugin to compile modern
JavaScript features to ones your users support.
If you want to evaluate MDX code then the lower-level compiler (@mdx-js/mdx)
can be used manually.
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
``sh`
npm install @mdx-js/rollup
Add something along these lines to your rollup.config.js:
`tsx
/**
* @import {RollupOptions} from 'rollup'
*/
import mdx from '@mdx-js/rollup'
/* @type {RollupOptions} /
const config = {
// …
plugins: [
// …
mdx({/ jsxImportSource: …, otherOptions… /})
]
}
export default config
`
See also [¶ Vite][vite] if you’re using Rollup through them for more info.
This package exports no identifiers.
The default export is [mdx][api-mdx].
Plugin to compile MDX w/ [rollup][].
###### Parameters
* options ([Options][api-options], optional)
— configuration
###### Returns
Rollup (and Vite) plugin.
Configuration (TypeScript type).
Options are the same as [CompileOptions from @mdx-js/mdx][compile-options]SourceMapGenerator
with the exception that the option is supported based ondevelopment
how you configure Rollup.
You cannot pass it manually.
When using Vite, the option is also supported based on how you
configure Vite.
There are also two additional options:
###### Fields
* exclude (Array, RegExp, or string, optional)include
— [picomatch][] patterns to exclude
* (Array, RegExp, or string, optional)
— [picomatch][] patterns to include
If you use modern JavaScript features you might want to use Babel through
[@rollup/plugin-babel][rollup-plugin-babel] to compile to code that works:
`tsx
/**
* @import {RollupOptions} from 'rollup'
*/
import mdx from '@mdx-js/rollup'
import {babel} from '@rollup/plugin-babel'
/* @type {RollupOptions} /
const config = {
// …
plugins: [
// …
mdx({/ jsxImportSource: …, otherOptions… /}),
babel({
// Also run on what used to be .mdx (but is now JS):
extensions: ['.js', '.jsx', '.cjs', '.mjs', '.md', '.mdx']
// Other options…
})
]
}
export default config
`
This package is fully typed with [TypeScript][].
It exports the additional type [Options][api-options].
See [§ Types][types] on our website for information.
Projects maintained by the unified collective are compatible with maintained
versions of Node.js.
When we cut a new major release, we drop support for unmaintained versions of
Node.
This means we try to keep the current release line, @mdx-js/rollup@^3`,
compatible with Node.js 16.
See [§ Security][security] on our website for information.
See [§ Contribute][contribute] on our website for ways to get started.
See [§ Support][support] for ways to get help.
This project has a [code of conduct][coc].
By interacting with this repository, organization, or community you agree to
abide by its terms.
[MIT][] © [Titus Wormer][author]
[api-mdx]: #mdxoptions
[api-options]: #options
[author]: https://wooorm.com
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
[build]: https://github.com/mdx-js/mdx/actions
[build-badge]: https://github.com/mdx-js/mdx/workflows/main/badge.svg
[chat]: https://github.com/mdx-js/mdx/discussions
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
[coc]: https://github.com/mdx-js/.github/blob/main/code-of-conduct.md
[collective]: https://opencollective.com/unified
[compile-options]: https://mdxjs.com/packages/mdx/#compileoptions
[contribute]: https://mdxjs.com/community/contribute/
[coverage]: https://codecov.io/github/mdx-js/mdx
[coverage-badge]: https://img.shields.io/codecov/c/github/mdx-js/mdx/main.svg
[downloads]: https://www.npmjs.com/package/@mdx-js/rollup
[downloads-badge]: https://img.shields.io/npm/dm/@mdx-js/rollup.svg
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[mit]: https://github.com/mdx-js/mdx/blob/main/packages/rollup/license
[npm]: https://docs.npmjs.com/cli/install
[picomatch]: https://github.com/micromatch/picomatch#globbing-features
[rollup]: https://rollupjs.org
[rollup-plugin-babel]: https://github.com/rollup/plugins/tree/HEAD/packages/babel
[security]: https://mdxjs.com/getting-started/#security
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
[support]: https://mdxjs.com/community/support/
[types]: https://mdxjs.com/getting-started/#types
[typescript]: https://www.typescriptlang.org
[vite]: https://mdxjs.com/getting-started/#vite