1.0.0 • Published 8 years ago

react-markdown-magic v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
8 years ago

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'
},