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

  1. Ordered List

    ```

  2. First ordered list item
  3. Another item ```
  • Unordered List

    ```

  • Unordered list can use asterisks
  • Or minuses ```

Images

![alt text](/images/fa-image-small.png "Logo Title Text 1")

alt text

Code

  • Inline

    `code`

  • Block

      ```python
      s = "Python syntax highlighting"
      print s
      ```
    

Blockquotes

> Blockquotes

Blockquotes

Horizontal Rule

  • ***