Turn a Markdown file into a document a client can actually open. Everything runs in your browser, so a draft proposal, project report, or handover doc never touches a server on its way to becoming a PDF.
Is this Markdown to PDF converter really free?
Yes, and there is no sign-up. The conversion runs entirely in your browser using JavaScript, so there is no server cost to pass on and no upload step.
Is my document uploaded anywhere?
No. The Markdown is parsed and rendered in your own browser, and the PDF is generated on your device. Your draft is saved to your browser's local storage so it survives a refresh, and nothing is sent to FreelancerKit.
What is the difference between "Download PDF" and "Print / Save as PDF"?
Download PDF renders the page to an image and wraps it in a PDF, so it matches the preview exactly but the text cannot be selected or searched. Print / Save as PDF hands the document to your browser's own PDF engine, which produces real selectable text in a much smaller file. For client-facing documents, Print is usually the better choice.
Which Markdown syntax is supported?
Standard Markdown plus GitHub Flavored Markdown: headings, bold and italic, ordered and nested lists, tables, fenced code blocks, blockquotes, horizontal rules, links, and images.
Can I convert a README file to PDF?
Yes. Drop the README.md straight onto the editor pane and it renders immediately. It is a common way to turn project documentation into something you can attach to a handover email.
Why does my code block get split across two pages?
The export tries to avoid breaking inside code blocks, tables, and headings, but a block taller than a single page has to split somewhere. Breaking a long block into shorter ones gives the page-break logic somewhere sensible to land.