How to convert PDF to Markdown
Pull the text out of a PDF and into clean, editable Markdown — what extracts well, why scanned PDFs need OCR first, and how to clean up the result fast.
A PDF is built to be displayed, not edited. When you need to reuse its content — quote it, repurpose it, or put it under version control — PDF to Markdown extracts the text in your browser and gives you back plain, structured Markdown.
Text-based vs scanned PDFs
This is the single most important thing to know before you start.
- A text-based PDF (exported from Word, Google Docs, a website, or most software) stores real, selectable characters. These convert well.
- A scanned PDF is really just photographs of pages. There are no characters to extract — only pixels. This tool reads text, not images, so a scan will come back empty or garbled.
Quick test: open the PDF and try to select a sentence with your cursor. If the text highlights, it'll convert. If you can only draw a box around it, you have a scan and need an OCR step first.
What extracts cleanly
- Paragraphs and body text — the core of what you're after.
- Headings — recovered from font-size cues, best-effort.
- Simple lists — usually preserved as bullets.
What needs cleanup
PDFs throw away the structure of a document and keep only its layout, so some artifacts are normal:
- Hard line breaks inside paragraphs (the PDF wrapped each visual line). You'll often rejoin these.
- Multi-column layouts can interleave text from both columns.
- Tables rarely survive as Markdown tables — they come through as loose text.
- Headers, footers, and page numbers sprinkle through the body.
Privacy
The PDF is parsed entirely in your browser — it's never uploaded to a server. That makes this safe for contracts, statements, and internal documents you wouldn't want to send to an online converter.
When to use it
Reach for it when you want to edit or reuse a PDF's words: turning a whitepaper into a blog draft, lifting documentation out of an old PDF manual, or quoting a report. If you only need the PDF to look good somewhere else, a copy-paste might be faster. For the reverse trip, see Markdown to PDF.