A modern, React-based web application for converting Markdown files to clean, styled HTML with live preview and export features.
- Live Markdown Editing: See your Markdown rendered as HTML in real time.
- Download as HTML: Export your rendered HTML with a single click.
- Modern, Clean UI: Responsive and attractive design for a great user experience.
- Syntax Highlighting: Code blocks are styled for readability.
- No Backend Required: Runs entirely in your browser.
- Node.js (v14 or newer recommended)
- npm (comes with Node.js)
# Clone the repository
# Install dependencies
npm installnpm startVisit http://localhost:3000 to use the app.
- Paste or write your Markdown in the left editor.
- See the HTML render live on the right.
- Click Download HTML to export your work.
npm run buildThe production-ready files will be in the build/ directory.
# Hello World!
This is a **Markdown** example.
- Live preview
- Download HTML
```js
console.log('Hello, Markdown!');