Helpful Markdown
Purpose
I want to consolidate helpful markdown examples in one place for easy reference later.
Examples
Images

Inserts: 
Links
[Google](https://google.com)
Inserts Google
Text Emphasis
*test* = test in italics
**test** = test in bold
~~test~~ = test
Code
Use ` as a wrapper for inline code.
inline code
Use ``` wrapers with a language name for code blocks
var foo = function(x) {
return(x + 5);
}
foo(3)