MarkdownNote
Back to Home
A complete reference guide to Markdown syntax. Bookmark this page for quick access!
| Markdown | Result |
|---|---|
# Heading 1 |
Heading 1 |
## Heading 2 |
Heading 2 |
### Heading 3 |
Heading 3 |
#### Heading 4 |
Heading 4 |
##### Heading 5 |
Heading 5 |
###### Heading 6 |
Heading 6 |
| Markdown | Result |
|---|---|
**bold text** |
bold text |
*italic text* |
italic text |
***bold and italic*** |
bold and italic |
~~strikethrough~~ |
|
__bold__ and _italic_ |
bold and italic |
| Markdown | Result |
|---|---|
- Item 1
- Item 2
- Item 3 |
|
1. First
2. Second
3. Third |
|
- Parent
- Child
- Child
- Parent |
|
- [x] Completed task
- [ ] Incomplete task |
|
| Markdown | Result |
|---|---|
[Link text](https://example.com) |
Link text |
[Link with title](https://example.com "Title") |
Link with title |
<https://example.com> |
https://example.com |
<email@example.com> |
email@example.com |
| Markdown | Result |
|---|---|
 |
Image with alt text |
 |
Image with title (tooltip) |
[](link) |
Clickable image (linked) |
| Markdown | Result |
|---|---|
`inline code` |
inline code |
```
code block
multiple lines
``` |
|
```javascript
const x = 42;
console.log(x);
``` |
|
| Markdown | Result |
|---|---|
> This is a quote |
This is a quote |
> First line
> Second line |
First line |
> Outer quote
>> Nested quote |
Outer quoteNested quote |
| Markdown | Result | ||||||
|---|---|---|---|---|---|---|---|
| Header | Header |
|--------|--------|
| Cell | Cell |
| Cell | Cell | |
|
||||||
| Left | Center | Right |
|:-----|:------:|------:|
| L | C | R | |
|
| Markdown | Result |
|---|---|
--- |
|
*** |
|
___ |
| Markdown | Description |
|---|---|
Term
: Definition |
Definition list (some parsers) |
H~2~O |
Subscript: H2O (extended) |
X^2^ |
Superscript: X2 (extended) |
==highlight== |
highlight (extended) |
[^1] ... [^1]: Note |
Footnote reference (extended) |
\*escaped\* |
*escaped* (backslash escapes) |