Markdown to Slides in Minutes | Generated by AI

Home 2025.09

Marp CLI lets you turn Markdown files into slides (HTML, PDF, PPTX). It’s especially useful if you want to write presentations in plain Markdown with minimal formatting effort.

Here’s a step-by-step guide:


1. Install Marp CLI

You need Node.js first.

npm install -g @marp-team/marp-cli

Check installation:

marp --version

2. Write a Markdown Presentation

Create a file, for example slides.md.

---
marp: true
theme: default
paginate: true
---

# Hello, Marp!

---

## Slide 2

- Bullet 1
- Bullet 2

Key points:


3. Preview in Browser

Run a local server with auto-reload:

marp -p slides.md

Open http://localhost:8080 in your browser.


4. Export Slides

Generate different formats:


5. Useful Options


6. Editor Integration


👉 With this setup, you can go from a plain .md file to a polished presentation in minutes.

Do you want me to give you a ready-to-use template Markdown file (with title slide, agenda, content, and closing slide) so you can start right away?


Back Donate