robin-liquidium/agent-skills

markdown-to-pdf

Markdown→PDF via bundled renderer; memos, investor docs, briefs.

First seen Jun 9, 2026

Installation

$ npx skills add robin-liquidium/agent-skills --skill markdown-to-pdf

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 robin-liquidium/agent-skills · top by installs.

npx skills add robin-liquidium/agent-skills

Browse all from robin-liquidium/agent-skills

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

Repository health

Stars 2
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,508 B
  • docs SUMMARY.md 89 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 8 installs

SKILL.md

Markdown To PDF

Use this skill to render Markdown files into clean local PDFs with the bundled renderer in scripts/markdowntopdf.py.

Default behavior

  • Prefer a pageless-style PDF: one tall page sized to the content height.
  • Use A4 width unless the user asks for something else.
  • Keep the output visually minimal and text-first.

Workflow

  1. Confirm the input Markdown path and desired output PDF path.
  2. Run the bundled renderer.
  3. Use the default fit-to-content mode unless the user explicitly wants standard pages.
  4. Verify the PDF was created and report the output path.

Commands

  • Pageless-style default:
python3 <skill-path>/scripts/markdown_to_pdf.py INPUT.md OUTPUT.pdf
  • Standard A4 pages:
python3 <skill-path>/scripts/markdown_to_pdf.py INPUT.md OUTPUT.pdf --page-mode a4
  • Custom page size:
python3 <skill-path>/scripts/markdown_to_pdf.py INPUT.md OUTPUT.pdf --page-mode custom --page-width-mm 210 --page-height-mm 297

Notes

  • The renderer intentionally supports a narrow Markdown subset: headings, paragraphs, bullets, numbered lists, and simple pipe tables.
  • The bundled CSS in assets/default.css mirrors the visual direction for browser-based workflows, but the primary path is the local Python renderer.
  • If the user asks for a different layout, page size, or denser typography, override the defaults explicitly.