Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

Jason McIver


A Javascript developer excited about Meteor, Mongo, React and Node.

Markdown cheatsheet

Headers

# H1
## H2
### H3

H1

H2

H3


styles

*Italics*
**Bold**
***Italics Bold***
<del>Strikethrough</del>  
  • Italics
  • Bold
  • Italics Bold
  • Underline
  • Strikethrough
    There is no underline

Quote

> this is a quote

this is a quote


lists

Dot points

- Milk
- Bread
  • Milk
  • Bread

Numbered list

It doesn't matter what numbers you use, they'll be numbered in order written.

 2. Brush teeth
 1. Eat Breakfast
 3. Go out
  1. Brush teeth
  2. Eat Breakfast
  3. Go out

Nested lists

 - shopping list
  6. Beer
  1. Ice cream
 - fishing list
  99. Bait
  4. Sinkers
  • shopping list
    1. Beer
    2. Ice cream
  • fishing list
    1. Bait
    2. Sinkers

Code blocks

Use 3 backticks at the start and end:

  ```
  var answer = 42;
  ```
var answer = 42;  

Specify code language

  ```language-javascript
  var answer = 42;
  ```
var answer = 42;  

Horizontal rule

***

Links

This is [an example](http://example.com) inline link  

This is an example inline link

HTML

You can actually write HTML

<input type="text" placeholder="I'm an input field!" />