Markdown Cheat Sheet

Common Markdown Syntax
Titles
 
# Main Title
## Subtitle
### Heading
#### Subheading
 
Text Styling
 
** Bold **
* Italic *
~~ Strikethrough ~~
> Blockquote
--- Horizontal Rule

` Single line of code `

```
 Code Block
```

 
Lists
 
Ordered Lists
1. First
2. Second
3. Third

Unordered Lists
- Item
- Item
- Item
 
Links and Images
 
[link](http://url)

![alt text](image.jpg)
 
Tables
 
| Heading | Description |
| ------------ | ----------- |
| first | desc |
| second | desc |
 
Task List
(not supported by all markdown applications)
 
- [x] First task
- [ ] Second task
- [ ] Third task