react-md-editor icon indicating copy to clipboard operation
react-md-editor copied to clipboard

React.js Markdown Editor Component

Results 13 react-md-editor issues
Sort by recently updated
recently updated
newest added

Hello, I just have a basic setup of the MDEditor component with Next.js. ![Screenshot 2023-01-25 at 16 53 22](https://user-images.githubusercontent.com/61986168/214519774-a6fc7256-ca96-4da6-b01a-f58385ddb736.jpg) All list including number and bullet list are not showing properly...

1. Using ES6 syntax for the React component instead of `React.createClass()`. 2. Adding `propTypes` to the component to ensure that the correct types of props are passed in. 3. Using...

As mentioned in [React 15.5 release notes](https://reactjs.org/blog/2017/04/07/react-v15.5.0.html#react), `React.createClass` ([MDEditor.js#L13](https://github.com/JedWatson/react-md-editor/blob/v0.2.2/src/MDEditor.js#L13)) and `React.PropTypes` ([MDEditor.js#L16-L19](https://github.com/JedWatson/react-md-editor/blob/v0.2.2/src/MDEditor.js#L16-L19)) are now deprecated. Are there any plans for making further releases with such replacements to make editor support...

Hello I am trying to implement react markdown editor and I have used Jed Watson's http://jedwatson.github.io/react-md-editor/ But the problem is that, I am getting the error attached. Any thoughts what...

The readme page should include its own npm install command: ``` npm install react-md-editor --save ``` Searching for react-md-editor on Google does *not* give the package as one of the...

When passing an onBlur callback in the codemirror options, the callback is not fired. I believe this is because the event is also used internally. Could the focusChanged method trigger...

Hi @JedWatson, Looking through the code, I notice it doesn't currently support images and links. Do you have plans to support that, and/or, could you describe what might be a...

``` 1. One 2. Two * Bullet list ``` should render as it does here on GitHub: 1. One 2. Two * Bullet list namely as a numbered list (with...