Obsidian to PDF: Export Notes with Clean Typography (2026)
Obsidian's built-in Export to PDF works, but it gives you one look: your current theme, fixed margins, no document styling choices. When a note needs to leave the vault as something polished — meeting notes for a client, a design doc, a study guide — you can get much better results by exporting the raw Markdown through a dedicated converter. Your notes are already .md files; no plugins required.
The quick method: copy, paste, convert
- Open the note in Obsidian and press
Ctrl/Cmd + A, then copy. - Open to-pdf.com/markdown-to-pdf and paste into the editor.
- Pick a document theme — Modern, Classic, Academic, or Compact — and a page size.
- Toggle page numbers if you want them, then click Download PDF.
Headings, nested lists, tables, task lists, and fenced code blocks with syntax highlighting all render properly. Everything runs in your browser — notes never leave your machine, which matters when your vault is your second brain.
You can also open the .md file directly
Every Obsidian note is a plain .md file in your vault folder. Drag the file from your vault directly into the converter — useful for long notes, or when you're exporting several notes one after another.
Handling Obsidian-specific syntax
Wikilinks
[[Like this]] links are Obsidian-only. They'll render as literal
brackets in the PDF. For outbound documents, do a quick find-and-replace to remove
brackets or convert important ones to plain text. Standard Markdown links
([text](url)) work as-is.
Embedded notes and images
![[embedded note]] transclusions don't expand outside Obsidian — paste
the embedded note's content where you want it. For vault images, export the image
and combine it via the image to PDF tool, or
screenshot the rendered note section.
Callouts
> [!note] callouts degrade gracefully into blockquotes — readable,
just without the colored styling. Leave them as they are.
Frontmatter
YAML frontmatter between --- fences is metadata, not content. Delete it
before converting unless you want readers to see your tags and aliases.
When the built-in export is the better choice
If your note leans heavily on plugins that transform rendering — Dataview tables, Mermaid diagrams, math blocks — Obsidian's own export captures what those plugins draw, since it prints the rendered view. The converter route wins on typography, themes, page-number control, and consistency across notes; the built-in export wins on plugin fidelity. Pick per note.