Markdown Cheatsheet
This is the first post, and is a remember of how to use markdown, this is strongly based on Markdown Cheatsheet
Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
Alt-H1
======
Alt-H2
------
Emphasis
- Italics
*italics*
- Bold
**Bold**
- Combined emphasis
*Combined __emphasis__*
List
-
Ordered List
```
- First ordered list item
- Another item ```
-
Unordered List
```
- Unordered list can use asterisks
- Or minuses ```
Links
-
[Inline Style With Title](https://www.google.com "I'm the title")
Images

Code
-
Inline
`code`
-
Block
```python s = "Python syntax highlighting" print s ```
Blockquotes
> Blockquotes
Blockquotes
Horizontal Rule
***