react-md-editor
react-md-editor copied to clipboard
A simple markdown editor with preview, implemented with React.js and TypeScript.
hi, how does one change the font?
Hello, I'm using react-md-editor to create a markdown editor in the React and TypeScript. This is my dependency: ```json "dependencies": { "@uiw/react-md-editor": "^3.20.5", "lodash": "^4.17.21", "react": "^18.2.0", "react-dom": "^18.2.0", "react-hook-form":...
Hello, I have kinda similar use case as issue https://github.com/uiwjs/react-md-editor/issues/454. Is there way to catch a char in actual writing with rehypeRewrite ? I want to detect when user write...
is there any way upload video into host with changing the code in this mde editor maybe an option for upload video and code thank you
Is it possible to check a checkbox option in the preview mode ?
**Version: @uiw/[email protected]** **Nextjs Version: [email protected]** 
First of all, i saw this article: https://github.com/uiwjs/react-md-editor/issues/420 where is added nicely mentions Then I was integrating this example and got `renderTextarea` is deprecated. I have no idea, how to...
Is there a way to make the editor to follow the height of the content e.g. as i type a new line the editor should grow rather than scroll. Like...
I have tried this in my Next.js app: ``` import "@uiw/react-md-editor/markdown-editor.css"; import "@uiw/react-markdown-preview/markdown.css"; import dynamic from "next/dynamic"; import { useState } from "react"; const MDEditor = dynamic( () => import("@uiw/react-md-editor"),...
I'm trying to send bold command from different component (like from a button on my app navigation bar ) to MDEditor. Is there a way for me to achieve this...