Tools·

Markdown Cheat Sheet

A quick reference for SQL,provides a quick reference to the most common Markdown syntax elements..

Headers

# H1

## H2

### H3

#### H4

##### H5

###### H6

Emphasis

Bold:

**bold text**
**bold text**

Italic:

_italicized text_
_italicized text_

Bold and Italic:

**_bold and italicized text_**
**_bold and italicized text_**

Blockquotes

> blockquote

Lists

Ordered List:

1. First item
2. Second item
3. Third item

Unordered List:

- First item
- Second item
- Third item
- First item
- Second item
- Third item
- First item
- Second item
- Third item

Nested List:

1. First item
   - Subitem
   - Subitem
2. Second item

Code

Inline Code:

`inline code`

Code Block:

```language
code block
```

Horizontal Rule

---
---

Inline Link:

[link text](URL)

Reference Link:

[link text][1]

[1]: URL

Images

Inline Image:

![alt text](URL)

Reference Image:

![alt text][1]

[1]: URL

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Task Lists

- [x] Completed task
- [ ] Incomplete task

Strikethrough

~~strikethrough text~~

Footnotes

Here's a sentence with a footnote.[^1]

[^1]: This is the footnote.

Extended Syntax (GitHub Flavored Markdown)

Syntax Highlighting:

```javascript
console.log('Hello, world!');
```

Tables (Extended):

| Syntax    | Description |
| --------- | ----------- |
| Header    | Title       |
| Paragraph | Text        |

Task Lists (Extended):

- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media