Help & Documentation
How to Convert Markdown to HTML
This tool makes it simple to convert your Markdown to HTML. You have three easy options to get started:
- Type: Simply start typing your Markdown text directly into the "Markdown Input" window on the left.
- Paste: Copy Markdown from another source and paste it into the input window.
- Drag & Drop: Drag a plain text file (.txt or .md) from your computer and drop it directly onto the "Markdown Input" window.
As you add content, you will see a live preview instantly rendered in the "HTML Preview" window on the right. Once you are satisfied with the result, you can:
- Print: Click the icon to open a print-ready version of your document.
- Download: Click the icon to save the generated HTML as a file.
- Copy: Click the icon to copy the raw HTML to your clipboard.
How to Use the Markdown to PDF Converter
Our markdown to PDF app allows you to easily create a professional markdown PDF using your browser's built-in print functionality.
- Finalize your content in the Markdown editor.
- Click the Print button () located above the HTML Preview pane. This will open the print preview page.
- On the print preview page, click the "Print Document" button. This will open your browser's print dialog.
- In the print dialog, find the "Destination" or "Printer" setting and select "Save as PDF" or a similar option (e.g., "Microsoft Print to PDF").
- Click "Save" to generate and download the PDF file to your computer. This makes our tool an effective markdown to PDF converter for any task.
Common Markdown Commands
Command | Description |
---|---|
# H1 | Main heading |
## H2 | Subheading |
### H3 | Third-level heading |
**bold text** | Bold text |
*italic text* | Italicized text |
~~strikethrough~~ | Strikethrough text |
> blockquote | Blockquote |
1. First item | Ordered list item |
- Unordered item | Unordered list item (can also use * or +) |
`code` | Inline code snippet |
```
code block
``` | Fenced code block |
--- | Horizontal rule (can also use *** or ___) |
[Link text](https://...) | Hyperlink |
 | Image |
| Header1 | Header2 |
|---|---|
| Cell1 | Cell2 | | Table |