react-markdown-magic
v1.0.0
Published
React component for rendering Markdown with code highlighting support
Downloads
16
Maintainers
Readme
React Markdown Magic
React component for rendering markdown with code highlighting support.
Usage
Block Form:
<ReactMarkdownMagic>
{`### Endpoints
* Unordered List
* Of Items
* That are neat
`}
</ReactMarkdownMagic>
Loading with webpack
Component uses markdown-it
which includes json data. The json-loader
is required to import this with webpack:
{
test: /\.json$/,
loader: 'json'
},