Markdown Guide
Markdown Cheetsheet
Links
[Link Text]{link URL}Images

or
[](link to redirect to)Headers
Heading 1
# Heading 1 - <h1>Heading 2
## Heading 2 - <h2>Heading 3
### Heading 3 - <h3>Heading 4
#### Heading 4 - <h4>Heading 5
##### Heading 5 - <h5>Heading 6
###### Heading 6 - <h6>Lists
Ordered Lists
- 1. First item
- 2. Second item
- 3. Third item
   1. First item
   2. Second item
   3. Third itemUnordered Lists
- First item
- Second item
- Third item
    + First item
    - Second item
    * Third item+, -, or * adds an unordered list item
 Can be styled with css list-style-type.
Code
code    Indent by one tab.Emphasis
bold text
 italic text
 bold and italic text
**bold text** 
*ital text*
***bold and ital text***
_underscores also work_Horizontal Rule
---URLs and Email Addresses
<fake@example.com>Blockquotes
This is a blockquote
span multiple paragraphs
blockquote in a blockquote
> blockquote
>
> span multiple paragraphs
>> blockquote in a blockquote