razzle-plugin-mdx

4.2.18 • Public • Published

razzle-plugin-mdx

This package contains a plugin for using mdx with Razzle

Usage in Razzle Projects

npm i razzle-plugin-mdx

or

yarn add razzle-plugin-mdx

Using the plugin with the default options

// razzle.config.js

module.exports = {
  plugins: ['mdx'],
};

Files with .md extension will be loaded as markdown and transpiled to html markup.

example:

import Document from './Document.md';

const Example = () => (<Document />);

With custom options:

// razzle.config.js
const images = require('remark-images');
const emoji = require('remark-emoji');

module.exports = {
  plugins: [
    {
      name: 'mdx',
      options: {
        remarkPlugins: [images, emoji],
      },
    },
  ],
};

Options

Check all the options here: mdx-js options.

/razzle-plugin-mdx/

    Package Sidebar

    Install

    npm i razzle-plugin-mdx

    Weekly Downloads

    100

    Version

    4.2.18

    License

    MIT

    Unpacked Size

    5.94 kB

    Total Files

    7

    Last publish

    Collaborators

    • jaredpalmer
    • razzle-bot