@mdx-js/runtime
Parse and render MDX in a runtime environment.
:warning: warning: this is not the preferred way to use MDX since it
introduces a substantial amount of overhead and dramatically increases
bundle sizes.
It should also not be used with user input that isn’t sandboxed.
Installation
npm:
npm i -S @mdx-js/runtime
Usage
import React from 'react'
import MDX from '@mdx-js/runtime'
const components = {
h1: props => <h1 style={{ color: 'tomato' }} {...props} />
}
const mdx = '# Hello, world!'
export default () => (
<MDX components={components}>{mdx}</MDX>
)
Contribute
See contributing.md
in mdx-js/mdx
for ways to get started.
This organisation has a Code of Conduct.
By interacting with this repository, organisation, or community you agree to
abide by its terms.
License
MIT © Compositor and ZEIT