smithery/ljchg12-hue

markdown-to-epub

Convert Markdown documents to EPUB ebooks with styling, metadata, and table of contents

Installation

$ npx skills add smithery/ljchg12-hue --skill markdown-to-epub

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/ljchg12-hue · top by installs.

npx skills add smithery/ljchg12-hue

Browse all from smithery/ljchg12-hue

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,285 B
  • docs SUMMARY.md 111 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Markdown to EPUB Converter Skill

Convert Markdown documents into properly formatted EPUB ebooks.

When to Use

  • Ebook creation
  • Documentation distribution
  • Reading on e-readers
  • Self-publishing

Core Capabilities

  • Markdown to EPUB conversion
  • Metadata embedding (title, author, publisher)
  • Table of contents generation
  • CSS styling
  • Image embedding
  • Cover image support

Tools

# Pandoc (recommended)
pandoc -s input.md -o output.epub --toc --epub-cover-image=cover.jpg

# With metadata
pandoc input.md -o output.epub \
  --metadata title="My Book" \
  --metadata author="John Doe" \
  --toc

# Calibre ebook-convert
ebook-convert input.md output.epub --authors="John Doe" --title="My Book"

# Gitbook
gitbook epub ./ mybook.epub

Metadata

---
title: "My Book Title"
author: "Author Name"
language: "en"
---

Best Practices

  • Use proper Markdown hierarchy (h1, h2, h3)
  • Include cover image (1600x2400px recommended)
  • Add metadata for discoverability
  • Test on multiple e-readers
  • Validate EPUB with epubcheck

Resources