This document showcases the extensive Markdown capabilities supported by our PDF converter, demonstrating clean, professional rendering for all standard elements.
You can easily emphasize text using standard markdown:
- Bold Text:
**Bold Text** - Italic Text:
*Italic Text* - Bold & Italic:
***Bold & Italic*** Strikethrough:~~Strikethrough~~
- Item 1
- Item 2
- Sub-item A
- Sub-item B
- First step
- Second step
- Sub-step 2.1
- Sub-step 2.2
- Completed task
- Pending task 1
- Pending task 2
"The advance of technology is based on making it fit in so that you don't really even notice it, so it's part of everyday life." — Bill Gates
Nested Blockquote Example
- Standard Link: Google
- Image:

Use backticks for inline code like npm install.
const { mdToPdf } = require('md-to-pdf');
async function convert() {
console.log("Hello, PDF!");
}Our converter automatically styles standard Markdown tables into clean, professional data tables (no ugly borders!).
| Feature | Support | Notes |
|---|---|---|
| Typography | ✅ | Native OS fonts used |
| Pagination | ✅ | Smart page breaks |
| Tables | ✅ | Professional minimalist look |
Use <div class="flex-container"> and <div class="flex-item"> for advanced document layouts:
This is standard paragraph text. Notice how it aligns perfectly without breaking the flow.
Sometimes you need to force a new page at a specific spot. You can do this by inserting a simple HTML div:
<div class="page-break"></div>This section started on a fresh page thanks to the manual page break above. This is incredibly useful for:
- Starting new chapters
- Keeping tables and their captions together
- Professional document structure
Generated by Elegant MD-to-PDF Converter