Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计异常

html-to-pdfHTML TO PDF 搜索

Agent Skill

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

总安装

247

周安装

10

GitHub Stars

公开资料未说明

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yonggao/claude-plugins --skill html-to-pdf

简介

html-to-pdf 用于将 HTML 内容转换为 PDF 文档。

  • 适合在前端设计中快速生成可打印或分享的静态文档。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能涉及文件生成和网络请求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

HTML to PDF/PNG Converter Skill

This skill helps you convert HTML files to PDF or PNG format with various options for output quality and page layout.

When to Use This Skill

Use this skill when the user wants to:

  • Convert HTML files to PDF
  • Generate PNG screenshots from HTML
  • Create printable documents from web pages
  • Export HTML reports as PDFs
  • Generate long-form images without page breaks
  • Create presentation-ready PDFs from HTML

Available Conversion Methods

Method 1: Multi-Page PDF (Standard A4)

Best for: Printing, archiving, traditional documents

Command:

python html_to_pdf_final.py input.html output.pdf

Features:

  • Standard A4 page format
  • Zero margins for seamless appearance
  • Background colors and gradients preserved
  • Multiple pages with page breaks
  • Optimized file size (~5-6 MB for typical reports)

Method 2: Single-Page Long Image PDF

Best for: Online viewing, presentations, no page breaks

Command:

python html_to_long_image.py input.html

Features:

  • Generates a full-page PNG screenshot first
  • Converts PNG to single-page PDF
  • NO page breaks - entire content on one page
  • Perfect for presentations and online viewing
  • Smaller file size (~1-2 MB)
  • Two output files: .png and .pdf

Method 3: Advanced Multi-Method Converter

Best for: Fallback options, compatibility

Command:

python html_to_pdf_converter.py input.html output.pdf

Features:

  • Tries WeasyPrint first (best CSS support)
  • Falls back to Playwright if needed
  • Automatic dependency installation
  • Handles complex CSS and gradients

Required Dependencies

The skill requires Playwright and Pillow. The scripts auto-install dependencies if missing:

pip install playwright pillow pypdf
playwright install chromium

Step-by-Step Instructions

For Standard Multi-Page PDF:

  1. Verify the HTML file exists: ls -la *.html
  2. Run the converter: python html_to_pdf_final.py your_file.html
  3. Open the result: open your_file_final.pdf

For Single-Page Long Image PDF:

  1. Verify the HTML file exists: ls -la *.html
  2. Run the long image converter: python html_to_long_image.py your_file.html
  3. Check outputs: # View the PNG screenshot open your_file_fullpage.png # View the PDF version open your_file_fullpage.pdf

Troubleshooting

Issue: Playwright browser not found

Solution:

playwright install chromium

Issue: Page breaks visible in PDF

Solution: Use the long image method instead:

python html_to_long_image.py your_file.html

Issue: Content appears cut off

Causes & Solutions:

  • CSS animations not complete: Script waits 2 seconds for animations
  • Lazy loading: Script scrolls through entire page to trigger loading
  • Large file size: Scripts handle files up to 20MB+

Issue: Blank PDF output

Solution: Use the long image method which uses screenshot instead of PDF rendering:

python html_to_long_image.py your_file.html

Output Files

After conversion, you'll get:

Multi-Page PDF:

  • filename_final.pdf - Standard A4 multi-page PDF

Long Image Method:

  • filename_fullpage.png - Complete screenshot as PNG (6-10 MB)
  • filename_fullpage.pdf - Single-page PDF from image (1-2 MB)

Best Practices

  1. For online viewing/presentations: Use html_to_long_image.py

- No page breaks - Smooth scrolling experience - Smaller file size

  1. For printing/archiving: Use html_to_pdf_final.py

- Standard A4 pages - Better for physical printing - Professional document format

  1. For complex CSS: Use html_to_pdf_converter.py

- Multiple fallback methods - Better compatibility

Implementation Notes

Script Locations

All scripts should be in the project directory:

  • html_to_pdf_final.py - Main multi-page converter
  • html_to_long_image.py - Long image generator
  • html_to_pdf_converter.py - Advanced multi-method converter

Key Features Implemented

  1. Animation Handling: All scripts disable CSS animations/transitions
  2. Lazy Loading: Scripts scroll through content to trigger loading
  3. Background Preservation: All gradients and colors render correctly
  4. Zero Margins: Seamless page appearance without visible borders
  5. Chinese Font Support: Handles CJK characters properly

Examples

Example 1: Convert BP Report to Multi-Page PDF

python html_to_pdf_final.py 202510_Alpha_Intelligence_BP.html
# Output: 202510_Alpha_Intelligence_BP_final.pdf (22 pages, 5.7 MB)

Example 2: Create Single-Page Presentation PDF

python html_to_long_image.py 202510_Alpha_Intelligence_BP.html
# Output:
#   - 202510_Alpha_Intelligence_BP_fullpage.png (6.1 MB)
#   - 202510_Alpha_Intelligence_BP_fullpage.pdf (1.6 MB, 1 page)

Example 3: Batch Convert Multiple Files

for file in *.html; do
    python html_to_long_image.py "$file"
done

Advanced Usage

Custom Output Paths

python html_to_pdf_final.py input.html custom_output.pdf
python html_to_long_image.py input.html

Check PDF Page Count

python -c "from pypdf import PdfReader; r = PdfReader('output.pdf'); print(f'Pages: {len(r.pages)}')"

Verify File Sizes

ls -lh *.pdf *.png

Performance Expectations

  • Processing Speed: ~5-10 seconds for typical HTML files
  • Memory Usage: ~100-200 MB during conversion
  • PDF File Size: 1-6 MB depending on method
  • PNG File Size: 6-10 MB for full-page screenshots

Success Criteria

A successful conversion should:

  1. ✅ Generate PDF/PNG without errors
  2. ✅ Include all HTML content (no truncation)
  3. ✅ Preserve colors, gradients, and styling
  4. ✅ Handle Chinese/CJK characters correctly
  5. ✅ Create readable file sizes (< 10 MB)

Quick Reference

NeedUseOutput
Printinghtml_to_pdf_final.pyMulti-page A4 PDF
Online viewinghtml_to_long_image.pySingle-page PDF + PNG
Maximum compatibilityhtml_to_pdf_converter.pyMulti-page PDF with fallbacks

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.14%
按下载量换算27

Claude

32.68%
按下载量换算25

Cursor

20.01%
按下载量换算16

Gemini CLI

8.51%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills