一键导入
pandoc-cli
Use Pandoc to convert documents between formats - Markdown, HTML, PDF, DOCX, LaTeX, EPUB, and dozens more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use Pandoc to convert documents between formats - Markdown, HTML, PDF, DOCX, LaTeX, EPUB, and dozens more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | pandoc-cli |
| description | Use Pandoc to convert documents between formats - Markdown, HTML, PDF, DOCX, LaTeX, EPUB, and dozens more. |
Universal document converter. Convert between Markdown, HTML, PDF, DOCX, LaTeX, EPUB, and 40+ formats.
pandoc input.md -o output.html # Markdown to HTML
pandoc input.md -o output.pdf # Markdown to PDF (requires LaTeX)
pandoc input.md -o output.docx # Markdown to Word
pandoc input.md -o output.epub # Markdown to EPUB
pandoc input.md -s -o output.html # Standalone HTML (full page)
pandoc input.html -o output.md # HTML to Markdown
pandoc input.html -o output.pdf # HTML to PDF
pandoc input.html -t gfm -o output.md # HTML to GitHub Flavored Markdown
pandoc input.docx -o output.md # DOCX to Markdown
pandoc input.docx -o output.html # DOCX to HTML
pandoc input.md --reference-doc=template.docx -o output.docx # Use Word template
pandoc input.tex -o output.html # LaTeX to HTML
pandoc input.md -o output.tex # Markdown to LaTeX
pandoc input.md --pdf-engine=xelatex -o output.pdf # PDF with XeLaTeX
pandoc input.md -s --toc -o output.html # Table of contents
pandoc input.md -s --css=style.css -o output.html # Custom CSS
pandoc input.md --template=my-template -o output.html # Custom template
pandoc input.md -V geometry:margin=1in -o output.pdf # PDF margins
pandoc input.md --highlight-style=tango -o output.html # Code highlighting
pandoc input.md --metadata title="My Doc" -o output.html
pandoc ch1.md ch2.md ch3.md -o book.pdf # Concatenate files
pandoc ch1.md ch2.md ch3.md --toc -o book.epub # Book with TOC
pandoc --list-input-formats # List input formats
pandoc --list-output-formats # List output formats
-f and -t to be explicit-s (standalone) for complete documents, not fragmentsbrew install --cask mactex-no-gui)--toc for automatic table of contents generation--template for consistent formatting across documentsecho "# Hello" | pandoc -f markdown -t html--wrap=none to prevent line wrapping in outputfor f in docs/*.md; do
pandoc "$f" -s --css=style.css -o "${f%.md}.html"
done
pandoc report.md -s --toc -V geometry:margin=1in -o report.pdf