New to Claude Skills? Learn how to install them →

github on GitHub

Convert PDF to Markdown

OfficialFree

Transform PDF documents into Markdown for easier analysis.

by github37.7k stars on github/awesome-copilot
3 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Convert PDF to Markdown does

The Convert PDF to Markdown skill is designed to facilitate the extraction of content from PDF files, converting them into a Markdown format that is easier to analyze, summarize, and search. This skill is particularly useful for users who frequently work with PDF documents such as reports, papers, invoices, forms, contracts, or scanned documents. By converting these files into Markdown, users can leverage the text for further processing, whether that involves data extraction, content review, or summarization.

To utilize this skill, users must first run the provided conversion script, which is included in the bundled files. The script is written in Python and requires the installation of specific dependencies, which are outlined in the setup documentation. Once the environment is properly configured, users can convert single PDF files or entire folders of PDFs in batch mode. The output will be organized into Markdown files, along with any extracted images, ensuring that all relevant content is preserved and accessible.

One key feature of this skill is its handling of mixed file types. When a user references a folder containing various document types, the skill will only process PDF files. It is essential to invoke sibling skills for other formats, such as Word and Excel, to ensure that no files are overlooked. This makes it a reliable tool for users who need to manage multiple document types efficiently.

Overall, this skill is ideal for developers and designers who require a straightforward method for converting PDF documents into a more manageable format, allowing for deeper analysis and integration into their workflows.

When to use it

Use this skill whenever you encounter a PDF file that needs to be analyzed, summarized, or processed in any way.

When not to use it

This skill is not suitable for non-PDF files or when OCR capabilities are needed for scanned documents without embedded text.

What you can build with it

Analyzing Research Papers

Convert academic research papers from PDF to Markdown for easier summarization and note-taking.

Processing Invoices

Quickly extract data from PDF invoices and convert them into a structured Markdown format for record-keeping.

Batch Conversions for Reports

Run batch conversions on a folder of PDF reports to prepare them for collaborative analysis and review.

How to install Convert PDF to Markdown

View source

1. Install with the skills CLI

npx skills add github/awesome-copilot/convert-pdf-to-md --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by github

Convert PDF to Markdown

When to use this skill

Trigger this skill any time there is a .pdf file that needs to be understood or processed — for example, a user attaches a PDF and asks questions about it, wants a summary, wants specific data or tables pulled out, or wants multiple PDFs in a folder processed together. PDF is a layout/print format, not reliably readable as plain text, so always convert it to Markdown first using the script in this skill rather than trying to open or parse the file directly.

This skill only supports .pdf — that's MarkItDown's only PDF-family format, so there's no legacy format to worry about here (unlike Word's .doc or Excel's .xls).

Mixed file types: When the user references a folder or set of documents containing multiple supported file types (.pdf, .docx, .xlsx), this skill handles only .pdf files. The agent MUST also invoke the sibling skills in parallel:

  • convert-word-to-md for any .docx files
  • convert-excel-to-md for any .xlsx files

Never process a folder and silently skip a supported file type. All three skills must be invoked together when mixed types are present.

Setup (once per environment)

Before the first conversion in a given environment, follow references/setup.md step by step to ensure Python, pip, markitdown, and pymupdf (for image extraction) are installed. Do this proactively rather than guessing whether the environment is ready — the script itself will also fail with a clear pointer back to that file if a dependency turns out to be missing, so it's safe to just try the conversion first if you're reasonably confident setup was already done.

Usage

The conversion script lives at scripts/convert_pdf_to_md.py.

Output structure: MarkItDown's PDF converter extracts text and tables only — it has no concept of embedded images at all. This script separately extracts real embedded images via PyMuPDF and writes a self-contained folder per document:

<name>/
    img/
        page001_img001.<ext>
        page002_img001.<ext>
        ...
    <name>.md

Because MarkItDown's PDF text does not preserve reliable per-page markers, there's no safe way to know exactly where inline an image belongs. Rather than risk misplacing images next to the wrong paragraph, the script appends a ## Extracted Images section at the end of the Markdown, with a ### Page N subheading per page that has images — read this section separately from the main body text. If the document has no embedded images, no img/ folder or Extracted Images section is created.

Single file:

python scripts\convert_pdf_to_md.py "C:\path\to\document.pdf"

This creates a document\ folder next to the source file (containing document.md and, if present, document\img\). To control the destination folder explicitly:

python scripts\convert_pdf_to_md.py "C:\path\to\document.pdf" -o "C:\path\to\output_folder"

A folder of PDFs (batch mode):

python scripts\convert_pdf_to_md.py "C:\path\to\folder"

Add --recursive to also include subfolders:

python scripts\convert_pdf_to_md.py "C:\path\to\folder" --recursive

Each .pdf found gets its own <name>\ output folder next to it by default. Pass -o "C:\path\to\output_parent" to collect all the generated <name>\ folders under a separate parent directory instead (subfolder structure is preserved when combined with --recursive).

After conversion, read the resulting .md file(s) to perform the actual analysis the user asked for — the script's job is only to produce accurate Markdown (and images), not to interpret the content.

Deciding where output goes

Default — always output next to the source file. The <name>/ folder is created in the same directory as the source .pdf. This is the required default for every case. Do NOT override it unless the user explicitly asks for a different location.

Only use -o when the user explicitly provides an output path (e.g., "save the output to C:\output", "put the results in D:\work"). Do NOT pass -o based on the agent's current working directory, the session state folder, or any implied location.

If the source file path cannot be fully resolved — for example, the user provides only a filename with no directory, or the path is ambiguous — use ask_user to confirm the full absolute path before running the conversion. Never guess or assume the directory.

Troubleshooting

SymptomLikely causeFix
ModuleNotFoundError: No module named 'markitdown' or 'fitz' / exit code 2MarkItDown or PyMuPDF not installedFollow references/setup.md
ERROR: Unsupported file type '...' / exit code 3Not a .pdf fileAsk the user for the correct file, or if it's .doc/.docx/.xlsx, use the matching sibling skill instead
ERROR: Input path not found / exit code 3Wrong path, or file movedConfirm the correct path with the user
FAILED <file> -> ... in batch outputThat specific file is corrupt, password-protected, or otherwise unreadableReport which file(s) failed; other files in the batch still succeed
NOTE: skipped N non-.pdf file(s)Folder contains non-PDF filesExpected — those files are intentionally ignored
Markdown body is empty or near-empty despite images being extractedThe PDF is scanned/image-only with no embedded text layer; MarkItDown does not perform OCRTell the user OCR isn't supported — the extracted page images are still available for them to view
Images appear in an appendix instead of inline with the textDeliberate limitation — MarkItDown's PDF text has no reliable per-page markers to place images inlineExpected behavior; cross-reference the ### Page N heading with the surrounding text context if needed

Frequently asked questions about Convert PDF to Markdown

Similar skills