Markdown


Code:

A First Level Header
====================

A First Level Header
====================

A Second Level Header
---------------------

Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.

The quick brown fox jumped over the lazy
dog's back.

### Header 3

> This is a blockquote.
> 
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote

Output:

A First Level Header

A Second Level Header

Now is the time for all good men to come to the aid of their country. This is just a regular paragraph.

The quick brown fox jumped over the lazy dog's back.

Header 3

This is a blockquote.

This is the second paragraph in the blockquote.

This is an H2 in a blockquote

Code:

Some of these words *are emphasized*.
Some of these words _are emphasized also_.

Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.

Output:

Some of these words are emphasized. Some of these words are emphasized also.

Use two asterisks for strong emphasis. Or, if you prefer, use two underscores instead.

Code:

*   Candy.
*   Gum.
*   Booze.

+   Candy.
+   Gum.
+   Booze.

-   Candy.
-   Gum.
-   Booze.

Output:

  • Candy.
  • Gum.
  • Booze.

  • Candy.

  • Gum.
  • Booze.

  • Candy.

  • Gum.
  • Booze.

Code:

1.  Red
2.  Green
3.  Blue

Output:

  1. Red
  2. Green
  3. Blue

Code:

* A list item.
  With multiple paragraphs.
* Another item in the list.

Output:

  • A list item. With multiple paragraphs.
  • Another item in the list.

Code:

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

Output:

This is an example link.

Code:

This is an [example link](http://example.com/ "With a Title").

Output:

This is an example link.

Code:

I get 10 times more traffic from [Google][1] than from
[Yahoo][2] or [MSN][3].

[1]: http://google.com/        "Google"
[2]: http://search.yahoo.com/  "Yahoo Search"
[3]: http://search.msn.com/    "MSN Search"

Output:

I get 10 times more traffic from Google than from Yahoo or MSN.

Code:

I start my morning with a cup of coffee and
[The New York Times][NY Times].

[ny times]: http://www.nytimes.com/

Output:

I start my morning with a cup of coffee and The New York Times.

Code:

![alt text](/path/to/img.jpg "Title")


![alt text][id]

[id]: /path/to/img.jpg "Title"

Output:

Code:

I strongly recommend against using any `` tags.

I wish SmartyPants used named entities like `—`
instead of decimal-encoded entites like `—`.

Output:

I strongly recommend against using any <blink> tags.

I wish SmartyPants used named entities like &mdash; instead of decimal-encoded entites like &#8212;.