Need AI Training/Help?CloudYeti.io/meet
MarkdownMe
PDF to Markdown guide

Convert a PDF to Markdown for Obsidian and Other Notes Apps

Download the converted .md file straight into your vault. Headings become real outline levels, and the source PDF never leaves your machine.

Direct answer

Convert the PDF in the browser, press Download .md, and save the file into your Obsidian vault folder. Obsidian indexes it on the next scan, and the # headings become outline levels and graph-visible structure. The same file imports cleanly into Logseq, Bear, Joplin, and any git-backed notes repo, because the output is plain CommonMark.

Open PDF to Markdown converter

When to use this

  • You keep research papers, manuals, or contracts as PDFs and want them searchable in your vault.
  • You want to annotate a document with links and backlinks instead of PDF highlights.
  • You are moving a reference library into a plain-text notes system.

Steps

  1. Convert the PDF with heading detection on.
  2. Leave header/footer stripping on so the journal name or page numbers do not repeat through the note.
  3. Check the output for interleaved columns if the source is a two-column paper.
  4. Press Download .md; the file is named after the original PDF.
  5. Move the file into your vault folder and add your own links and tags.

Example

PDF source
research-paper.pdf — a 9-page single-column report with a running journal header.
Markdown output
research-paper.md — headings as # and ##, paragraphs rejoined into full sentences, hyphenated line breaks healed, and the running header removed.

Common mistakes

  • Do not import a scanned paper. It produces an empty note because there is no text layer to read.
  • Do not expect figures or images; only text is extracted.
  • Two-column academic PDFs often need a manual reorder before the note is readable.
  • Reference lists and footnote markers come through as plain text, so citation formatting needs manual work.

FAQ

Does the download keep the original file name?
Yes. `report.pdf` downloads as `report.md`, so the note keeps the name you already recognise in your vault.
Is the Markdown compatible with Obsidian?
Yes. The output is plain CommonMark — ATX headings, hyphen bullets, and numbered lists — with no app-specific syntax, so it works in Obsidian, Logseq, Bear, Joplin, and any static site generator.
Can I convert a whole folder of PDFs at once?
No. The tool converts one file at a time. For a bulk library, a command line tool such as pdftotext in a script is a better fit.

Related PDF to Markdown guides