elowy01
4/16/2020 - 10:51 AM

markdown cheatsheet

# H1
## H2
### H3
#### H4
##### H5
###### H6

Alternatively, for H1 and H2, an underline-ish style:

Alt-H1
======

Alt-H2
------
//
# Links:

[I'm an inline-style link](https://www.google.com)

//
// Ordered lists. To create an ordered list, add line items with 
// numbers followed by periods. The numbers don’t have to be in numerical order,
// but the list should start with the number one.
1. First item
2. Second item
    1. Test1
    2. Test2
3. Third item
4. Fourth item
//
// CODE BLOCK
// add 4 white spaces (or 1 tab) at the beginning of the line
    test code
//
// Highlight text
<mark>text to be highlighted</mark>
//
# Adding an image to markdown using a link:
# 'Benjamin Bannekat' is the alt text
![Benjamin Bannekat](https://octodex.github.com/images/bannekat.png)