Ultimate Markdown Guide
Learn Markdown by comparing input snippets with real previews.
Headings
Define document structure.
Input (Markdown)
# Heading 1
## Heading 2
### Heading 3 Output (Preview)
Heading 1
Heading 2
Heading 3
Emphasis
Apply styles to text.
Input (Markdown)
**Bold** and *Italic*
~~Strikethrough~~ Output (Preview)
Bold and ItalicStrikethrough
Lists
Organize info with lists.
Input (Markdown)
- Item 1
- Item 2
1. First
2. Second Output (Preview)
- Item 1
- Item 2
- First
- Second
Tasks
Create interactive checklists.
Input (Markdown)
- [x] Finished
- [ ] Pending Output (Preview)
- Finished
- Pending
Links & Images
Reference resources.
Input (Markdown)
[MD Preview](https://md.manpuc.me)
 Output (Preview)
Quotes
Indicate quoted text.
Input (Markdown)
> A quote.
>> Nested quote. Output (Preview)
A quote.
Nested quote.
Code
Display program code.
Input (Markdown)
`inline` code
```js
console.log('Hi');
``` Output (Preview)
inline code
console.log('Hi');
Tables
Tabular data display.
Input (Markdown)
| A | B |
|---|---|
| 1 | 2 | Output (Preview)
| A | B |
|---|---|
| 1 | 2 |