# Markdown Cheatsheet
### Headings
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
### Horizontal line
---
### Table
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- | :-----------: | --------: |
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
| _Inline_ | `markdown` | **works** |
### Font Styles
_Italics text_
**Bold text**
~Strikethrough~
### Block Quotes
> This is a block quote!
### Checkbox List
- [ ] Unchecked checkbox
- [x] Checked checkbox
### List
- List
- With
- Sub items
And indented paragraphs
To have a line break without a paragraph, you will need to use two trailing spaces.
- Without
- Numbering
### Numbered List
1. List
2. With
3. Numbering
### Links
[About Markdit](https://www.markdit.com/appdocs/markdit)
### Images
Inline image example. Markdit logo image. 
Block image example.
![Markdit logo][markditlogo]
[markditlogo]: https://www.markdit.com/client/logo192.png
### Code Blocks
Inline `code block` for writing inline code
```javascript
// Code block for writing code snippets
const message = "This is a markdown editor";
alert(message);
```