I have my documentation written in markdown and I would like to render those files from my JSX (ES6+CommonJS) code into React components. How can I achieve this?
For example I have styles.markdown and I would like to render it into a <p>
tag.
Advertisement
Answer
You can use React-Markdown:
JavaScript
x
8
1
const React = require('react')
2
const ReactDOM = require('react-dom')
3
const ReactMarkdown = require('react-markdown')
4
5
const input = '# This is a headernnAnd this is a paragraph'
6
7
ReactDOM.render(<ReactMarkdown source={input} />, document.getElementById('container'))
8
Or… You can just create a simple React component that wraps a call to a Markdown parser. There are two very good ones for JavaScript:
Now, you can create a component like this:
JavaScript
1
8
1
var MarkdownViewer = React.createClass({
2
render: function() {
3
// pseudo code here, depends on the parser
4
var markdown = markdown.parse(this.props.markdown);
5
return <div dangerouslySetInnerHTML={{__html:markdown}} />;
6
}
7
});
8
There used to have one already, but it doesn’t seem to be maintained anymore: https://github.com/tcoopman/markdown-react
Also, if you need a React Markdown Editor, check out: react-mde. Disclaimer: I am the author.