Headings
Use # symbols for hierarchical headings. Each level gets distinct sizing
and styling.
Text Formatting
Standard Markdown inline formatting is fully supported.
Bold text for emphasis
Italic text for nuance
inline code for technical terms
Lists
Unordered, ordered, and nested lists. Task lists with checkboxes are also supported.
- First item
- Second item
- Nested item
- Another nested
- Step one
- Step two
- Step three
- โ Completed task
- โ Pending task
Tables
GFM-style tables with column alignment using : in the separator row.
| Feature | Status | Notes |
|---|---|---|
| Tables | โ Ready | Full GFM |
| Alerts | โ Ready | 5 types |
| Footnotes | โ Ready | Academic |
Code Blocks
Fenced code blocks with syntax highlighting. Specify the language after the opening fence.
Images
Embed images with alt text. Images are automatically scaled to fit the page width.
Scaled to page width
Links
Standard Markdown links, auto-linked URLs, and reference-style links.
Blockquotes
Standard blockquotes with the > prefix. Can be nested.
Callout Alerts
GFM-style alerts using > [!TYPE]. Five types available.
Footnotes
Academic-style footnotes with automatic numbering and placement at page bottom.
Highlighted Text
Use double equals signs to highlight important text with a yellow background.
This is highlighted text in a sentence.
You can highlight multiple words easily.
Definition Lists
Define terms using the : prefix after the term.
Smart Typography
Automatic conversion of common character sequences into typographically correct symbols.
“Smart quotes” and ‘single quotes’
Dashes: – (en-dash)
— (em-dash)
Ellipsis: …
Arrows: →
Page Breaks
Force a new page in the PDF output with an HTML comment.
Content for chapter one...
Content for chapter two...
Two-Column Layout
Set the column count in your .mdprint.json config or on the website
toolbar.
Newspaper-style two-column layout
Column Toggle
Switch between 1 and 2 columns mid-document using HTML comments.
Font Presets
Five typography presets available from the toolbar or .mdprint.json.
Quick Reference
Common syntax at a glance.
| Syntax | Result |
|---|---|
# Heading 1 |
Top-level heading |
## Heading 2 |
Section heading |
**bold** |
Bold text |
*italic* |
Italic text |
`code` |
Inline code |
==highlight== |
Highlighted |
[^1] |
Footnote reference |
- item |
Bullet list |
1. item |
Numbered list |
| a | b | |
Table row |
> quote |
Blockquote |
> [!NOTE] |
Note callout |
> [!TIP] |
Tip callout |
> [!WARNING] |
Warning callout |
> [!CAUTION] |
Caution callout |
> [!IMPORTANT] |
Important callout |
<!-- pagebreak --> |
Page break in PDF |
<!-- columns: 2 --> |
Switch to 2 columns |
--- |
Horizontal rule |
 |
Image |
[text](url) |
Link |