Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计通过

md-to-pdfMD TO PDF 开发

Agent Skill

md-to-pdf 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

367

周安装

15

GitHub Stars

7

下载量

118
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:md-to-pdf(MD TO PDF 开发)
来源仓库:https://github.com/madebyecho/agent-skills
仓库路径:skills/md-to-pdf
安装命令:
npx skills add https://github.com/madebyecho/agent-skills --skill md-to-pdf
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/madebyecho/agent-skills --skill md-to-pdf

简介

MD TO PDF 开发用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 注意该工具当前无底部简介,功能以实际仓库内容为准。

SKILL.md

Markdown to PDF

Convert any markdown file into a clean, professionally styled PDF. Handles tables, code blocks, blockquotes, and deep heading hierarchies out of the box. Optionally color-codes table cells based on status keywords.

When to Apply

Reference these guidelines when:

  • The user asks to convert a markdown file to PDF
  • The user wants a printable or shareable version of a document
  • The user asks to "export", "generate PDF", or "make a PDF"
  • The user wants styled tables with color-coded status cells
  • The user needs landscape orientation for wide tables

How It Works

This skill bundles a Python script (scripts/md_to_pdf.py) that handles the full conversion pipeline:

Markdown → HTML (via markdown2) → Styled HTML → PDF (via weasyprint or xhtml2pdf)

Always run the bundled script rather than writing conversion code inline. This ensures consistent styling and avoids reinventing the wheel each time.

Quick Start

Basic conversion — the script auto-detects the best orientation:

python3 <skill-path>/scripts/md_to_pdf.py input.md output.pdf

With status cell coloring (colors the table cells, not the text):

python3 <skill-path>/scripts/md_to_pdf.py input.md output.pdf --status-colors

Force landscape or portrait:

python3 <skill-path>/scripts/md_to_pdf.py input.md output.pdf --landscape
python3 <skill-path>/scripts/md_to_pdf.py input.md output.pdf --portrait

Custom status keywords and colors:

python3 <skill-path>/scripts/md_to_pdf.py input.md output.pdf --status-colors \
  --custom-colors '{"APPROVED": "#d4edda:#155724", "REJECTED": "#f8d7da:#721c24"}'

Features

Auto Orientation

The script scans for tables in the markdown. If any table has 4 or more columns, it defaults to landscape. Otherwise, portrait. The user can always override with --landscape or --portrait.

Status Cell Coloring

When --status-colors is passed, the script identifies table cells in the Status column that contain bold keywords and applies background colors to the entire cell. This is column-aware — it only targets cells in columns named "Status", not every bold word in the document.

Built-in keyword → color mappings:

KeywordBackgroundText ColorUse Case
EXISTS#d4edda (green)#155724Available, implemented
MISSING#f8d7da (red)#721c24Not available, needed
PARTIAL#fff3cd (yellow)#856404Partially available
TODO#fff3cd (yellow)#856404Pending work
DONE#d4edda (green)#155724Completed
CLIENT-SIDE#d1ecf1 (blue)#0c5460Handled by client
NEEDS CLARIFICATION#e8daef (purple)#512e5fRequires discussion
WARNING#fff3cd (yellow)#856404Caution
ERROR#f8d7da (red)#721c24Failure
N/A#e2e3e5 (gray)#495057Not applicable

Users can add or override mappings with --custom-colors.

Engine Fallback

The script tries weasyprint first (better CSS support, proper page breaks, modern rendering). If weasyprint is not installed, it falls back to xhtml2pdf (pure Python, always installable). If neither is available, the script prints install instructions and exits — it does not auto-install packages.

Before first use, install dependencies explicitly:

pip install markdown2==2.5.3
pip install weasyprint          # recommended
# OR
pip install xhtml2pdf==0.2.16   # pure Python fallback

Page Breaks

Each ## (h2) heading starts on a new page for long documents. This keeps sections cleanly separated in the PDF output.

Default Styling

The generated PDF includes sensible defaults:

  • Font: Helvetica / Arial sans-serif, 9px body
  • Headings: Scaled sizes (h1: 20px → h4: 10px), h1/h2 with bottom borders
  • Tables: Collapsed borders, dark header row (#2c3e50 background, white text), alternating row colors
  • Code blocks: Light gray background, monospace font
  • Blockquotes: Left blue border, light background
  • Page margins: 1.5cm on all sides

Arguments Reference

ArgumentRequiredDefaultDescription
inputYesPath to the markdown file
outputNo<input>.pdfOutput PDF path. Defaults to same name with.pdf extension
--landscapeNoAutoForce landscape orientation
--portraitNoAutoForce portrait orientation
--status-colorsNoOffEnable status keyword cell coloring
--custom-colorsNoJSON string of custom keyword → color mappings. Format: '{"KEYWORD": "#bg:#text"}'

Troubleshooting

Tables look clipped or overflow: Try --landscape to give tables more horizontal space.

Status colors not appearing: Make sure you passed --status-colors. The feature is off by default. Also verify that the status keywords are wrapped in **bold** in the markdown source.

weasyprint won't install: It requires system libraries (cairo, pango). On macOS: brew install cairo pango. On Ubuntu: apt install libcairo2-dev libpango1.0-dev. If you can't install them, the script falls back to xhtml2pdf automatically.

Fonts look different: weasyprint uses system fonts, xhtml2pdf uses built-in PDF fonts. Results may vary slightly between engines.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.13%
按下载量换算43

Claude

25.23%
按下载量换算30

Cursor

19.44%
按下载量换算23

Gemini CLI

9.3%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills