Convert EPUB ebooks to Markdown format
Scanned 9/10/2026
Install to Claude Code
npx -y skills add luokai0/ai-agent-skills-by-luo-kai --skill zo-epub-to-markdown --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Zo Epub To Markdown?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/luokai0-zo-epub-to-markdown)More formats (shields.io, HTML) on the badges page.
---
name: epub-to-markdown
description: Convert EPUB ebooks to Markdown format
metadata:
author: Zo
category: Official
display-name: Convert EPUB to Markdown
emoji: 📚
---
# Convert EPUB to Markdown
## Purpose
Convert EPUB ebook files to Markdown format, preserving structure and formatting.
## Input
- Path to the EPUB file you want to convert
## Steps
1. Install pandoc:
```bash
apt-get update && apt-get install -y pandoc
```
2. Convert the EPUB file to Markdown:
```bash
pandoc "<user's_epub_path>" -t gfm-raw_html -o "<output_markdown_path>"
```
3. Tell the user where the converted Markdown file was saved.
## Note
The `gfm-raw_html` format produces cleaner output by removing embedded HTML elements from the EPUB.
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!