To convert JSX which is written in Markdown to React.Element.
Install:
npm i --save bisheng-plugin-react-deep
Add 'bisheng-plugin-react to bisehng.config.js
's plugins.
module.exports = {
plugins: ['bisheng-plugin-react-deep?lang=jsx'],
};
In Markdown:
... This is a button: ```jsx import { Button } from 'antd'; ReactDOM.render(<Button>Click!</Button>, mountNode); ``` ...
The above example will be rendered as:
default: 'react-component'
default: { presets: [ 'react', ['env', { targets: { browsers: ['last 2 versions', 'Firefox ESR', '> 1%', 'ie >= 8', 'iOS >= 8', 'Android >= 4'], }, }], ], plugins: [ 'transform-class-properties', 'transform-object-rest-spread', ], }
default: false
Whether to import React
and ReactDOM
automatically.
MIT