MDX Docs
Document and develop React components with MDX and Next.js.
- :memo: Create documentation with markdown
- :atom_symbol: Import and use React components
- :gear: Component-based API
- :computer: Live code examples
- :nail_care: Customizable themes
- ▲ Built for Next.js
Getting Started
To create a new documentation site, run npm init docs
and follow the prompts.
Once the application has been generated, see the README.md
for more documentation.
To add MDX Docs to an existing Next.js app, see the Custom Setup docs.
Using MDX
MDX lets you mix markdown with inline JSX to render React components.
Write markdown as you normally would and use ES import syntax to use custom components in your document.
Live Code
MDX Docs has built-in components to render JSX fenced code blocks as live previews with editable code, powered by react-live.
To make a code block render as an editable example, use the .jsx
language attribute (note the .
prefix).
Components Scope
To add components to scope for use in the live code examples,
pass a components
object to the Layout
component.
The components
object can also include components to render the HTML elements in MDX.