Markdown Documentation

Headers

Put # in the front of a line like this
# h1 text
## h2 text
### h3 text

Style

Italics: Surround text with single asterisks or underscores.
*this text will be in italics*
_this text will also be in italics_
Bold: Surround text with double asterisks.
**this text will be bold**

Code

There are two ways to format text like it's code. You can surround text with tick marks (`) on a single line or surround several lines of text with ``` like in these examples.
In this line, `code()` will be highlighted.
```
function myCode() {
   var codeInHere = 1;
}
```