Skip to content

lingdocs/mdx-loader

Repository files navigation

@lingdocs/mdx-loader

A webpack loader to convert Markdown files into React components.

This is a fork of mdx-loader with updated dependencies and many plugins trimmed out.

mdx-loader uses mdx-js/mdx under the hood, and follows a batteries-included philosophy, adding a number of super awesome features:

NOTE: Right now there is a very beta autolink plugin. Unfortunately it only works with text after markdown headings. Any JSX included in markdown headings will be lost!

Usage

npm install --save-dev mdx-loader

With create-react-app

MDX can be used with unejected create-react-app projects! To start, you'll need to add a .babelrc file to the root level of your project:

{
    "presets": ["babel-preset-react-app"]
}

Then, you can import a component from any Markdown file by prepending the filename with !babel-loader!mdx-loader!. For example:

/* eslint-disable import/no-webpack-loader-syntax */
import * as myDoc from '!babel-loader!@lingdocs/mdx-loader!../pages/index.mdx'
const Component = myDoc.default;
const { frontMatter } = myDoc;
const tableOfContens = myDoc.tableOfContents();

// use as <Component />

You can also import documents dynamically using the proposed import() syntax and React.lazy(), without messing with linter config:

const MyDocument = React.lazy(() => import('!babel-loader!mdx-loader!../pages/index.md'))

With Webpack

Start by adding an entry to your module.rules array:

module: {
  rules: [
    /**
     * MDX is a tool that converts Markdown files to React components. This
     * loader uses MDX to create Page objects for Markdown files. As it
     * produces ES2015, the result is then passed through babel.
     */
    { test: /\.mdx?$/,
      use: [
        'babel-loader',
        'mdx-loader',
      ]
    },

    // ...
  ]
},

This assumes you've already got Babel set up with your Webpack project.

Using your Markdown components

You can import and use your Markdown files like standard components. You can also import a frontMatter object that contains your document's front matter, and a tableOfContents object that contains a tree of your document's headings. For example:

import React, { Component } from 'react'
import Document, { frontMatter, tableOfContents } from './document.md'

export default class Something extends Component {
  render() {
    return (
      <div>
        <h1>{frontMatter.title}</h1>
        <Document />
      </div>
    )
  }
}

About

A batteries-included MDX loader for Webpack.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published