Markdown to PDF on Windows - without Pandoc, MiKTeX or wkhtmltopdf
The classic Windows path for Markdown-to-PDF goes through Pandoc plus MiKTeX, or wkhtmltopdf, or a VS Code extension with a bundled Chromium. None of that is needed for documents you actually send.
The four-step Windows flow
- Open md2document.com in Edge, Chrome or Firefox.
- Paste your Markdown into the editor.
- Pick a template and a design.
- Press
Ctrl+Eto export. The PDF lands in your Downloads folder.
Pairing with the editor you already have
VS Code
Open the .md file. Ctrl+A, Ctrl+C. Paste in the converter. Faster than installing the markdown-pdf extension and its bundled 200MB Chromium. The VS Code guide covers the keyboard flow.
Notepad++, Sublime Text, Notepad
Plain text editors are the easiest source: select all, copy, paste. No syntax munging in the clipboard.
Obsidian
Switch to source mode (Ctrl+E inside Obsidian), select all, copy. Otherwise you copy rendered Markdown including plugin syntax. The Obsidian guide covers wikilink image references.
Typora
Typora exports PDFs natively. Reach for this converter when you need a cover page, a real ToC or a brand theme - see the Typora guide.
Windows-specific gotchas
- OneDrive sync. A
.mdfile underC:\Users\you\OneDrivemay be a placeholder. Right-click and pick "Always keep on this device" before opening if you hit a sync delay. - Managed-device policies. On enterprise laptops, paste targets can be restricted. The converter only reads the paste buffer locally - there is no DLP egress, since nothing leaves the browser tab on the public flow.
- Network shares. If the
.mdfile lives on a SharePoint or DFS share, copy the contents into the browser rather than trying to point an editor at the URL - saves a round-trip through SharePoint's previewer. - Printer driver page size. Default Windows print queues are Letter in North America, A4 elsewhere. The converter defaults to A4; switch to Letter in the sidebar before exporting for US printers.
When Pandoc is still right
Pandoc plus MiKTeX is the answer for math-heavy work, BibTeX citations, or anything you would put in CI. For a proposal, a memo, a resume - this is the cheaper path. The full trade-off is in the Pandoc-alternative comparison.
Common questions
Do I need admin rights to install anything?
No. The converter runs in any browser already on the machine. Useful on managed laptops where you cannot install Pandoc, MiKTeX or a VS Code extension.
Does it work on Windows on ARM?
Yes. Edge and Chrome both run natively on Windows on ARM and the converter is JavaScript - no architecture-specific binary.
What about the WSL-Pandoc path?
WSL plus Pandoc plus a TeX engine is the right setup for build pipelines and math-heavy work. For a proposal or a resume, it is a lot of friction. This converter sidesteps the install entirely.
Will it print correctly on A4 / US Letter paper?
The Page section in the sidebar has a page-size toggle. Default is A4. Switch to Letter before exporting if the destination printer is in North America.
Related
- Markdown to PDF on Mac - the macOS equivalent.
- Markdown to PDF - the full converter guide.
- Free Markdown tools