This is a forked syntax cheatsheet for Jekyll.

View the markdown used to create this post.

[View the markdown used to create this post](https://raw.githubusercontent.com/barryclark/www.jekyllnow.com/gh-pages/_posts/2014-6-19-Markdown-Style-Guide.md).

This is a paragraph, it’s surrounded by whitespace. Next up are some headers, they’re heavily influenced by GitHub’s markdown style.

Header 2 (H1 is reserved for post titles)##

## Header 2 (H1 is reserved for post titles)##

Header 3

### Header 3

Header 4

#### Header 4

A link to Jekyll Now. A big ass literal link http://github.com/barryclark/jekyll-now/

A link to [Jekyll Now](http://github.com/barryclark/jekyll-now/). A big ass literal link <http://github.com/barryclark/jekyll-now/>

An image, located within /images

![an image alt text]({{ site.baseurl }}/images/jekyll-logo.png “an image title”)

![an image alt text]({{ site.baseurl }}/images/jekyll-logo.png "an image title")

  • A bulletted list
  • alternative syntax 1
  • alternative syntax 2
    • an indented list item
  1. An
  2. ordered
  3. list
* A bulletted list
- alternative syntax 1
+ alternative syntax 2
  - an indented list item

1. An
2. ordered
3. list

Inline markup styles:

  • italics
- _italics_
  • bold
- **bold**
  • code()
- `code()`

Blockquote

> Blockquote

Nested Blockquote

>> Nested Blockquote

Syntax highlighting can be used with triple backticks, like so:

/* Some pointless Javascript */
var rawr = ["r", "a", "w", "r"];

Use two trailing spaces
on the right
to create linebreak tags

Finally, horizontal lines


----

****