# #⃣ #⃣ #⃣ #⃣ Markdown

### Headings

<table><thead><tr><th width="150">Style</th><th width="134">Syntax</th><th width="248">Example</th><th>Output</th></tr></thead><tbody><tr><td>Heading 1</td><td>#</td><td><code># this is heading 1</code></td><td><h2>Heading 1</h2></td></tr><tr><td>Heading 2</td><td>##</td><td><code>## this is heading 2</code></td><td><h3>Heading 2</h3></td></tr><tr><td>Heading 3</td><td>###</td><td><code>### this is heading 3</code></td><td><h4>Heading 3</h4></td></tr></tbody></table>

### Styling Text

<table><thead><tr><th>Style</th><th width="161">Syntax</th><th width="216">Example</th><th>Output</th></tr></thead><tbody><tr><td>Bold</td><td><code>** ** OR</code><br><code>__ __</code></td><td><code>**this is bold**</code></td><td><strong>this is bold</strong></td></tr><tr><td>Italics</td><td><code>_ _</code></td><td><code>_italic text_</code></td><td><em>this is italic</em></td></tr><tr><td>Strikethrough</td><td><code>~~ ~~</code></td><td><code>~~strikethrough~~</code></td><td><del>strikethrough</del></td></tr></tbody></table>

### Quotes

You can quote text by typing `"` + `Space`at the beginning of your quote.

> This is a quote

### Lists

You can create an unordered list by adding a `- or *`before the text.

```
* First list item
* Second list item
```

```md
- First list item
- Second list item
```

To create an ordered list, start each line with a number followed by a `.` symbol.

```md
1. First list item
2. Second list item
```

You can press `Tab` or `Shift + Tab` to indent or unindent a list item.

### Checkbox

To create a checkbox item, start with a hyphen `-` and followed by `[]` or `[x]`, `and` press `space`

```md
-[x] This is a completed task.
-[] This is an incomplete task.
```

You can press `Tab` or `Shift + Tab` to indent or unindent a checkbox item.

### Divider

To insert to divider, start with an empty line and type \*\*\* or `---`

### Format as code

Type `` ` `` around the text to format it as `code`
