md0.io supports a range of output formats across its tools. This guide covers every export option, where to find it, and what to keep in mind for each format.
Copy to Clipboard
Available in: All editors and converter tools
Every tool has a Copy button that puts the current output on your clipboard. In editors, this copies the raw markdown source. In converter tools, it copies the converted output (HTML, for example, not the markdown that produced it).
Use this when pasting into another application, a CMS, a Git repository, or a chat tool.
Download as .md
Available in: Markdown Editor, Live Editor, WYSIWYG Editor, Formatter
Downloads the raw markdown source as a .md file. The filename defaults to document.md and can be renamed after saving.
This is the cleanest way to archive your work or move it to a different editor. Markdown files are plain text and open correctly in any text editor, GitHub, VS Code, Obsidian, or any markdown-aware tool.
Download as .html
Available in: Markdown to HTML
Produces a standalone .html file with the converted content. The output is clean, semantic HTML without inline styles unless you request them.
Use this when you need to embed markdown-sourced content into a website, paste HTML into a CMS, or hand a self-contained document to someone who needs a web-ready file. The Copy HTML button in the same tool lets you paste the HTML directly without downloading.
Caveat: The output file does not include a <head> block with stylesheets by default. If you need a styled document, copy the HTML into a template or use the PDF export for a formatted result.
Download as .pdf
Available in: Markdown to PDF
Converts your markdown to a formatted PDF document using html2pdf.js, a browser-based library. The conversion happens entirely client-side with no server involved.
Use this for sharing formatted documents that should not be edited, submitting reports, or producing print-ready output.
Browser note: PDF rendering quality varies by browser. Chrome and Chromium-based browsers (Edge, Brave) produce the most accurate results. Firefox may handle some font and page-break cases differently. For best output, use Chrome or a Chromium browser and verify the preview before downloading.
JavaScript requirement: The PDF tool relies on JavaScript rendering. It will not work with JavaScript disabled.
Download as .docx
Available in: Markdown to Word
Exports your markdown as a .docx file in standard Word format. The file opens correctly in Microsoft Word, Google Docs (via Drive upload), and LibreOffice Writer.
Use this when the recipient needs an editable document in Word format, or when submitting to a workflow that requires .docx input.
Format note: Complex markdown such as nested tables or custom HTML may not translate perfectly into Word's document model. Plain prose, headings, lists, and simple tables convert cleanly.
Download as .csv
Available in: Markdown Table to CSV
Converts a markdown pipe table to CSV format. Each table row becomes a CSV row, with cell contents properly quoted where needed.
Use this to take data that started in markdown and move it into a spreadsheet application or data pipeline.
Download as .xlsx
Available in: Markdown Table to Excel
Converts a markdown pipe table to a .xlsx spreadsheet. The file opens in Excel, Google Sheets, and LibreOffice Calc.
Use this when your table data needs to go into a spreadsheet for further analysis, sorting, or sharing with colleagues who work in Excel.
Copy HTML
Available in: Markdown to HTML
Copies the full HTML output to your clipboard without downloading a file. This is the fastest way to paste converted HTML directly into a CMS field, a code editor, or an email template editor.
Browser Print
Most md0 tool output pages support browser printing via Ctrl+P (or Cmd+P on Mac). The rendered preview is styled for print, so this works as a lightweight alternative to the PDF export for simple documents.
Print to PDF from your browser's print dialog to get a PDF without using the dedicated PDF tool. Results depend on your browser's print rendering.
Choosing the Right Format
| Goal | Format to use | |---|---| | Archive or version control | .md | | Paste into a website or CMS | Copy HTML | | Share a formatted document | .pdf | | Submit an editable document | .docx | | Move table data to a spreadsheet | .csv or .xlsx | | Quick copy for another editor | Copy to clipboard |