Some useful markdown syntax tutorials:
- Italicize
_italicize_
italicize
- Bold
**bold**
bold
- Header
### Header3 #### Header4
Header3
Header4
- Link
[Google](www.google.com)
- Reference
[Funny][other place] [other place]: www.github.com
[Funny][other place]
[other place]: www.github.com - Images
![Alt Text](https://www.w3schools.com/w3images/fjords.jpg)
- Blockquote
> quote blabla
quote blabla
- List
- unordered
*
- ordered
1.
- unordered
- Paragrahs
- hard break
\n
- soft break (two spaces) ` `
- hard break
- code
```python print "Hello World!"
```