# react-markdown-to-html
**Repository Path**: mirrors_svenanders/react-markdown-to-html
## Basic Information
- **Project Name**: react-markdown-to-html
- **Description**: React Component that converts a Markdown file to HTML
- **Primary Language**: Unknown
- **License**: ISC
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-18
- **Last Updated**: 2026-01-17
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Markdown to HTML
[React][1] Component that converts a Markdown file to HTML
Demo at [opensourceprojects.robbestad.com][2]
## Installation
% npm install react-markdown-to-html --save
## Usage
#### With JSX
var Markdown2HTML = require('react-markdown-to-html');
MyComponent = React.createClass({
render: function() {
return (
);
}
});
#### Without JSX
var Markdown2HTML = require('react-markdown-to-html');
MyComponent = React.createClass({displayName: "MyComponent",
render: function() {
return (
React.createElement(Markdown2HTML, {src: "README.md"})
);
}
});
[1]: https://facebook.github.io/react
[2]: http://opensourceprojects.robbestad.com/#/markdown