GitPedia

Next.js

Markdoc plugin for Next.js

From markdoc·Updated June 1, 2026·View on GitHub·

> **Note**: this plugin will be treated as a beta version until `v1.0.0` is released. The project is written primarily in JavaScript, distributed under the MIT License license, first published in 2022. Key topics include: loader, markdoc, markdown, nextjs, plugin.

Latest release: 0.5.0
July 21, 2025View Changelog →

@markdoc/next.js

Note: this plugin will be treated as a beta version until v1.0.0 is released.

Using the @markdoc/next.js plugin allows you to create custom .md and .mdoc pages in your Next.js apps, and automatically render them with markdoc.

Setup

The first thing you'll need to do is install @markdoc/next.js and add it to your project's config.

  1. From your project, run this command to install @markdoc/next.js:

    sh
    npm install @markdoc/next.js @markdoc/markdoc
  2. Open next.config.js and add the following code:

    When using Webpack:

    js
    // next.config.js const withMarkdoc = require('@markdoc/next.js'); module.exports = withMarkdoc(/* options */)({ pageExtensions: ['js', 'md'], });

    For Turbopack support, add the following configuration:

    js
    // next.config.js module.exports = withMarkdoc({ dir: process.cwd(), // Required for Turbopack file resolution })({ pageExtensions: ['js', 'md'], });
  3. Create a new Markdoc file in pages/docs named getting-started.md.

    pages
    ├── _app.js
    ├── docs
    │   └── getting-started.md
    ├── index.js
    
  4. Add some content to getting-started.md:

    md
    --- title: Get started with Markdoc description: How to get started with Markdoc --- # Get started with Markdoc

See our docs for more options.

Contributing

Contributions and feedback are welcomed and encouraged. Feel free to open PRs here, or open issues in the Markdoc core repo.

Follow these steps to set up the project:

  1. Run npm install
  2. Run npm test

Code of conduct

This project has adopted the Stripe Code of conduct.

License

This project uses the MIT license.

Contributors

Showing top 10 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from markdoc/next.js via the GitHub API.Last fetched: 6/28/2026