This is a simple Markdown Previewer built using JavaScript. It allows users to write and preview Markdown in real time.
- π Real-time preview of Markdown
- π‘ Syntax highlighting for code blocks
- π Supports GitHub Flavored Markdown (GFM)
- π§Ή Clear editor button to reset the input
- HTML
- CSS
- JavaScript
- Marked.js for parsing Markdown
- Highlight.js for syntax highlighting
- Open
index.htmlin a browser. - Start typing Markdown in the editor.
- See the preview update instantly.
- Click the Clear button to reset the editor.
# Hello World
This is a **markdown** _previewer_.
## Features
- Real-time preview
- Support for basic Markdown
- Syntax highlighting
```javascript
const greeting = "Hello, world!";
console.log(greeting);
Feel free to modify and improve it! π

