.claude/skills/md-to-pdf/SKILL.md
Converts Markdown files to professional PDF documents using WeasyPrint. Use when user wants to convert markdown to PDF, export as PDF, or generate PDF from documents. Supports custom CSS styling, page headers/footers, and Autodesk brand themes.
npx skillsauth add samarv/Shanon pdf-conversionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Convert Markdown files to professional PDF documents using WeasyPrint (HTML→PDF engine) with customizable CSS styling. Runs entirely in sandbox with no external dependencies beyond Python packages.
| Component | Library | Purpose |
|-----------|---------|---------|
| MD Parser | markdown | Convert Markdown → HTML with extensions |
| PDF Engine | weasyprint | Render HTML+CSS → PDF |
| Styling | Custom CSS | Professional typography and layout |
| Feature | Status | Notes |
|---------|--------|-------|
| Headers (h1-h6) | ✅ | Proper hierarchy styling |
| Bold/Italic | ✅ | Standard inline formatting |
| Lists (ordered/unordered) | ✅ | Nested list support |
| Code blocks | ✅ | Syntax-highlighted with fenced_code |
| Tables | ✅ | GFM-style tables |
| Links | ✅ | Clickable in PDF |
| Images | ✅ | Embedded (local paths) |
| Blockquotes | ✅ | Styled callouts |
| Horizontal rules | ✅ | Section dividers |
| Task lists | ✅ | Checkbox rendering |
| Footnotes | ✅ | End-of-document notes |
| Table of Contents | ✅ | Auto-generated with [TOC] |
# One-time setup (if not done)
cd /Users/samarvir/code/autodesk/Product\ management
source .venv/bin/activate
pip install markdown weasyprint
# Basic conversion
python .claude/skills/md-to-pdf/convert_md_to_pdf.py input.md output.pdf
# With options
python .claude/skills/md-to-pdf/convert_md_to_pdf.py input.md output.pdf \
--css custom.css \
--page-size letter \
--title "Document Title"
**PDF Generated Successfully**
**Input**: input.md
**Output**: output/document.pdf
**Pages**: [N] pages
**Size**: [X] KB
Styling: [default/custom CSS path]
| Argument | Type | Default | Description |
|----------|------|---------|-------------|
| input | positional | required | Input Markdown file path |
| output | positional | required | Output PDF file path |
| --css | string | default.css | Custom CSS file path |
| --page-size | string | a4 | Page size: a4, letter, legal |
| --margin | string | 2.5cm | Page margins |
| --title | string | (from md) | Document title for header |
| --no-toc | flag | false | Disable table of contents |
| --no-header | flag | false | Disable page header |
| --no-footer | flag | false | Disable page footer |
python .claude/skills/md-to-pdf/convert_md_to_pdf.py \
Brains/docs-integration/prd.md \
output/prd.pdf
python .claude/skills/md-to-pdf/convert_md_to_pdf.py \
Brains/ai-renderings/case-for-a-new-squad.md \
output/adhoc/ai-renderings/proposal.pdf \
--css .claude/skills/md-to-pdf/styles/autodesk.css \
--title "AI Renderings Squad Proposal"
python .claude/skills/md-to-pdf/convert_md_to_pdf.py \
document.md \
document.pdf \
--page-size letter \
--margin 1in
| Theme | File | Use Case |
|-------|------|----------|
| Default | default.css | Clean, professional documents |
| Autodesk | autodesk.css | Autodesk brand colors |
| Minimal | minimal.css | Simple, no-frills output |
Create your own CSS file with:
@page rules for margins, headers, footersExample custom CSS sections:
/* Page setup */
@page {
size: A4;
margin: 2.5cm;
@top-center { content: "Document Title"; }
@bottom-right { content: "Page " counter(page); }
}
/* Typography */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
font-size: 11pt;
line-height: 1.6;
}
/* Headers */
h1 { color: #1D91D0; page-break-before: always; }
h1:first-of-type { page-break-before: avoid; }
Follow the project's Output Location Protocol:
| Document Type | Save To | Example |
|---------------|---------|---------|
| Brain PRDs | Brains/[name]/ | Brains/ai-renderings/prd.pdf |
| Leadership Docs | output/recurring/ | leadership-reviews/q1-2026.pdf |
| Ad-hoc Analysis | output/adhoc/[topic]/ | adhoc/market-analysis/report.pdf |
| Test/Temporary | output/ | output/test.pdf |
| Rule | Implementation |
|------|----------------|
| No user input in file paths | Validated input/output paths |
| No eval/exec | Pure library API calls |
| No subprocess | WeasyPrint is pure Python |
| Input validation | File existence checks |
| Sandboxed execution | Runs in Cursor sandbox |
| Resource limits | Handles large files gracefully |
| Issue | Cause | Fix |
|-------|-------|-----|
| Missing fonts | System fonts not available | Use web-safe fonts in CSS |
| Images not showing | Relative paths broken | Use absolute paths or --base-path |
| Tables overflow | Wide tables | Add table { width: 100%; } to CSS |
| No page breaks | CSS missing rules | Add h1 { page-break-before: always; } |
| WeasyPrint warnings | Font/CSS issues | Usually safe to ignore |
python .claude/skills/md-to-pdf/convert_md_to_pdf.py input.md output.pdf --debug
Outputs:
| File | Purpose |
|------|---------|
| .claude/skills/md-to-pdf/SKILL.md | This documentation |
| .claude/skills/md-to-pdf/convert_md_to_pdf.py | Main converter script |
| .claude/skills/md-to-pdf/default.css | Default styling |
| .claude/skills/md-to-pdf/styles/ | Additional CSS themes |
cd /Users/samarvir/code/autodesk/Product\ management
source .venv/bin/activate
pip install markdown weasyprint
| Package | Version | Purpose |
|---------|---------|---------|
| markdown | >=3.4 | Markdown parsing with extensions |
| weasyprint | >=60.0 | HTML to PDF rendering |
WeasyPrint requires some system libraries. On macOS:
brew install pango
If you encounter font issues:
brew install fontconfig
For integration with other scripts:
from convert_md_to_pdf import MarkdownToPDF
converter = MarkdownToPDF(
css_path="default.css",
page_size="a4",
margin="2.5cm"
)
# Convert file
converter.convert_file("input.md", "output.pdf")
# Convert string
converter.convert_string(
markdown_text="# Hello World\n\nThis is a test.",
output_path="output.pdf",
title="Test Document"
)
--debug first for complex documents[TOC] for documents > 5 pages--allow-remote flagI'll convert the Markdown file to PDF.
**Input**: [filename.md]
**Output**: [path/output.pdf]
**Styling**: [default/custom]
**Page Size**: [A4/Letter]
Converting...
**PDF Generated Successfully**
**File**: `output/[filename].pdf`
**Pages**: [N] pages
**Size**: [X] KB
The PDF includes:
- [TOC if present]
- [N] sections
- [N] tables
- [N] images
Open the PDF to review formatting.
**PDF Generation Failed**
**Error**: [error message]
Troubleshooting:
1. [specific fix based on error]
2. Run with `--debug` for more info
3. Check CSS syntax if using custom styles
documentation
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks
development
A framework to identify and develop sustainable competitive advantages (Power) based on a company's lifecycle stage. Use this when drafting a product strategy, evaluating business model durability, or distinguishing between "operational excellence" and true competitive moats.
development
```yaml --- name: podcast-launch-and-growth-engine description: A framework for launching and scaling a podcast based on topic validation, ranking momentum, and lean production. Use this skill when starting a new content channel, choosing a niche, or designing a listener acquisition strategy. --- This framework leverages Chris Hutchins' "All the Hacks" methodology to move from an idea to the top 5% of active podcasts through strategic validation, momentum-based launching, and high-efficiency di
development
A high-bar framework for measuring and achieving product-market fit (PMF) before scaling. Use this when validating a new product line, deciding if a beta is ready for a general release, or diagnosing why a product isn't generating organic word-of-mouth growth.