Beta

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 Italic
Strikethrough

Lists

Organize info with lists.

Input (Markdown)
- Item 1
- Item 2

1. First
2. Second
Output (Preview)
  • Item 1
  • Item 2
  1. First
  2. Second

Tasks

Create interactive checklists.

Input (Markdown)
- [x] Finished
- [ ] Pending
Output (Preview)
  • Finished
  • Pending

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