Use this skill to convert Markdown to PDF with consistent styles.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add modbender/skill-library-mcp --skill markdown-to-pdf-styled --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Markdown To Pdf Styled?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/modbender-markdown-to-pdf-styled)More formats (shields.io, HTML) on the badges page.
---
name: md-to-pdf
description: Use this skill to convert Markdown to PDF with consistent styles.
---
# md-to-pdf
**version:** 1.0.0
**author:** 大总管
**description:** Convert Markdown (.md) files to styled PDF documents with pandoc + wkhtmltopdf
Use this skill to convert Markdown to PDF with consistent styles.
## Quick Start
1. Ensure dependencies exist:
```bash
pandoc --version
wkhtmltopdf --version
```
2. Run conversion:
```bash
bash {baseDir}/scripts/md2pdf.sh /abs/path/doc.md
```
## Style Options
Use built-in styles:
- `clean` (default): simple business style
- `modern`: blue, presentation-friendly
- `paper`: serif, reading-friendly
Examples:
```bash
bash {baseDir}/scripts/md2pdf.sh /abs/path/doc.md --style clean
bash {baseDir}/scripts/md2pdf.sh /abs/path/doc.md /abs/path/out.pdf --style modern
bash {baseDir}/scripts/md2pdf.sh /abs/path/doc.md --style paper
```
## Custom CSS
Pass an absolute CSS path:
```bash
bash {baseDir}/scripts/md2pdf.sh /abs/path/doc.md /abs/path/doc.pdf --style /abs/path/custom.css
```
## Notes
- Script enables local CSS loading via `--enable-local-file-access`.
- If output title warning appears, set Markdown metadata `title:`.
- For detailed usage and troubleshooting, read `{baseDir}/references/usage.md`.
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!