react-static-markdown

0.0.6 • Public • Published

react-static-markdown

Build Status npm version

Markdown files utils for react-static

Install

yarn add -D globby gray-matter mdxc mdx-loader
yarn add react react-static-markdown 

Example usage with mdx-loader

static.config.js

webpack: (config, {defaultLoaders, stage}) => {
  config.resolve.extensions.push('.md');
  config.module.rules = [
    {
      oneOf: [
        {
          test: /\.md$/,
          use: ['mdx-loader'],
        },
        defaultLoaders.cssLoader,
        defaultLoaders.jsLoader,
        defaultLoaders.fileLoader,
      ],
    },
  ];
  return config;
},

Usage

import About from 'content/pages/about.md';

...

<About />

Example usage without mdx-loader

Markdown is transformed to mdx js code string during getRoutes and then evaluated to component.

static.config.js

const getFiles = require('react-static-mdx/getFilesWithMdx');

...

const pages = await getFiles('content/pages/*.md');

Usage

import mdxToComponent from 'react-static-mdx/mdxToComponent';

...

const Page = mdxToComponent(page.contentmdx);

...

<Page {...props} />

License

React Static uses the MIT license. For more information on this license, click here.

Readme

Keywords

Package Sidebar

Install

npm i react-static-markdown

Weekly Downloads

5

Version

0.0.6

License

MIT

Unpacked Size

153 kB

Total Files

22

Last publish

Collaborators

  • tomaszbak