Create presentations from Markdown using Marp - simple syntax, professional output
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill md-slides --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Md Slides?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-md-slides)More formats (shields.io, HTML) on the badges page.
---
name: md-slides
description: Create presentations from Markdown using Marp - simple syntax, professional output
author: claude-office-skills
version: "1.0"
tags: [presentation, marp, markdown, pdf, pptx]
models: [claude-sonnet-4, claude-opus-4]
tools: [computer, code_execution, file_operations]
library:
name: marp
url: https://github.com/marp-team/marp
stars: 3.1k
---
# Markdown Slides Skill
## Overview
This skill enables creation of presentations from pure Markdown using **Marp**. Write slides in familiar Markdown syntax and export to PDF, PPTX, or HTML with professional themes.
## How to Use
1. Write or provide Markdown content
2. I'll format it for Marp with proper directives
3. Export to your preferred format (PDF/PPTX/HTML)
**Example prompts:**
- "Convert my notes to a presentation"
- "Create slides from this markdown"
- "Build a pitch deck using markdown"
- "Generate PDF slides from this outline"
## Domain Knowledge
### Basic Syntax
```markdown
---
marp: true
---
# First Slide
Content here
---
# Second Slide
- Bullet 1
- Bullet 2
```
### Themes
```markdown
---
marp: true
theme: default # default, gaia, uncover
---
```
### Directives
```markdown
---
marp: true
theme: gaia
class: lead # Centered title
paginate: true # Page numbers
header: 'Header' # Header text
footer: 'Footer' # Footer text
backgroundColor: #fff
---
```
### Images
```markdown



```
### Columns
```markdown
<div class="columns">
<div>
## Left
Content
</div>
<div>
## Right
Content
</div>
</div>
```
## Example
```markdown
---
marp: true
theme: gaia
paginate: true
---
<!-- _class: lead -->
# Project Update
Q4 2024 Review
---
# Highlights
- Revenue: +25%
- Users: +50%
- NPS: 72
---
# Roadmap
| Q1 | Q2 | Q3 | Q4 |
|----|----|----|-----|
| MVP | Beta | Launch | Scale |
---
<!-- _class: lead -->
# Thank You!
questions@company.com
```
## CLI Usage
```bash
# Install
npm install -g @marp-team/marp-cli
# Convert
marp slides.md -o presentation.pdf
marp slides.md -o presentation.pptx
marp slides.md -o presentation.html
```
## Resources
- [Marp Documentation](https://marp.app/)
- [GitHub](https://github.com/marp-team/marp)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!