Awesome
bisheng-plugin-react
To convert JSX which is written in Markdown to React.Element.
Usage
Install:
npm i --save bisheng-plugin-react
Add 'bisheng-plugin-react to bisehng.config.js
's plugins.
module.exports = {
plugins: ['bisheng-plugin-react?lang=jsx'],
};
In Markdown:
<pre> ... This is a button: ```jsx import { Button } from 'antd'; ReactDOM.render(<Button>Click!</Button>, mountNode); ``` ... </pre>The above example will be rendered as:
API
lang: String
default: 'react-component'
noreact: Boolean
default: false
Whether to import React
and ReactDOM
automatically.
License
MIT