Reference: Markdown Cheatsheet https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#lists
Headings
note: use space between # and text
Emphasis
italics
bold
Strike through
Lists
- Ordered list
- Unordered list
Indentation 1 (3 spaces before and two spaces after)
Note: to start a new line add two trailing spaces
Links
I'm an inline-style link with title
You can use numbers for reference-style link definitions
Images
Inline-style:
Reference-style:
Code and Syntax Highlighting
Inline Code: use back-ticks
Code Block:
new_var = "Python syntax highlighting"
print new_var
