DEV Community

oyedeletemitope
oyedeletemitope

Posted on

Build A Markdown Editor In Reactjs

Introduction

In this tutorial, we'll be building a markdown editor. As we all know that react is one of the most popular frameworks out there so that's what we'll be using, also it's my favorite framework so that's another reason why I'll be using it. We'll also be using a package called remarkable and also tailwind cdn. Remarkable library includes a Markdown component that converts Markdown to HTML. It's very simple, nice and easy so let's get started!!!

Installing the app and packages

The first thing we need to do is create our app so let's open up our terminal and navigate to the folder we want to install React and paste this:

npx create-react-app react-markdown
Enter fullscreen mode Exit fullscreen mode

Next cd into the just installed folder install remarkable:

npm install remarkable
Enter fullscreen mode Exit fullscreen mode

We also need to add tailwind cdn so let's navigate to our public/index.html and add this:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.15/tailwind.min.css" referrerpolicy="no-referrer">
Enter fullscreen mode Exit fullscreen mode

Building the markdown

We need to change some things. so let's head over to our app.js, delete everything and paste this:

import { useState } from "react";
import { Remarkable } from "remarkable";

const md = new Remarkable();

function App() {
  const [text, setText] = useState("");
  return (
    <>
      <main className="p-5 md:max-w-4xl md:mx-auto">
        <h1 className="text-gray-900 text-4xl text-center font-bold">
          markdown editor
        </h1>

        <article>
          <label htmlFor="markdown" className="mt-5 mb-3 block"> 
        type in some markdown</label>
          <textarea
            name="textarea"
            id="markdown"
            cols="30"
            rows="10"
            required
            placeholder="type in some markdown"
            className="bg-white p-5 rounded shadow w-full"
          ></textarea>

          <h3>output</h3>
          <div></div>
        </article>
      </main>
    </>
  );
}

export default App;
Enter fullscreen mode Exit fullscreen mode

Still in our app.js the next thing we want to work on is getting the input and displaying it on the output
inside the textarea let's add a value prop:

 value={text}
Enter fullscreen mode Exit fullscreen mode

This means that whatever is typed in our input will be stored in our value prop
we then need to add an onchange event handler.

onChange={(e)=>setText(e.target.value)}
Enter fullscreen mode Exit fullscreen mode

The next thing we need to do is convert the text to markdown so inside our div in the output part, add this:

dangerouslySetInnerHTML={{__html:md.render(text)}}

Enter fullscreen mode Exit fullscreen mode

Or better still replace the div with this:

 <div dangerouslySetInnerHTML={{__html:md.render(text)}}></div>
Enter fullscreen mode Exit fullscreen mode

This render method is coming from the remarkable package that we imported and initialized

We want to add background color so let's go back to our index.css and paste this into our body:

 background-color: #68e0e0;
Enter fullscreen mode Exit fullscreen mode

We'll also be pasting at the end of our CSS codes

 h1, h2, h3, h4 , h5 , h6 {
  font-weight: bold;
}
h1{
 font-size: 36px;
}
h2{
 font-size: 32px;
}
h3{
  font-size:28;
}

h4{
 font-size: 24px; 
}
h5{
 font-size: 20px; 
}
h6{
 font-size: 16px;  
}
a{
  color: blue;
  text-decoration: underline;
}
Enter fullscreen mode Exit fullscreen mode

Now let's start up our app:

npm start
Enter fullscreen mode Exit fullscreen mode

markdown
If you have something like that congratulations!!! you just built yourself a markdown editor in React.

Conclusion

We successfully built a markdown editor in React also using a package called remarkable. we also learned what it is. For those who couldn't get it, here's a link to the repo on my Github. Please share if you found this helpful.

Latest comments (4)

Collapse
 
ksengine profile image
Kavindu Santhusa

You can use editor js for a beautiful version

Collapse
 
oyedeletemitope profile image
oyedeletemitope

Thanks for the suggestion

Collapse
 
duegreg profile image
Gergo Miklos

Remarkable is deprecated, you should change to markdownit (same authors)

Collapse
 
oyedeletemitope profile image
oyedeletemitope

Thanks.. I'll keep that in mind