in: | This is a regular paragraph.
Foo
This is another regular paragraph. out: |-

This is a regular paragraph.

Foo

This is another regular paragraph.

--- in: '"Larry Bird":http://images.google.com/images?num=30&q=larry+bird' out: '

"Larry Bird":http://images.google.com/images?num=30&q=larry+bird

' --- in: '©' out:

©

--- in: AT&T out:

AT&T

# We don't do this. # --- # in: 4 < 5 # out: 4 < 5 --- in: | This is an H1 ============= This is an H2 ------------- out: |-

This is an H1

This is an H2

--- in: | # This is an H1 ## This is an H2 ###### This is an H6 out: |-

This is an H1

This is an H2

This is an H6
--- in: | > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, > consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. > Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. > > Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse > id sem consectetuer libero luctus adipiscing. out: |-

This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.

--- in: | > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. > > Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing. out: |-

This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.

--- in: | > This is the first level of quoting. > > > This is nested blockquote. > > Back to the first level. out: |-

This is the first level of quoting.

This is nested blockquote.

Back to the first level.

--- in: | > ## This is a header. > > 1. This is the first list item. > 2. This is the second list item. > > Here's some example code: > > return shell_exec("echo $input | $markdown_script"); out: |-

This is a header.

1. This is the first list item. 2. This is the second list item.

Here's some example code:

return shell_exec("echo $input | $markdown_script");
--- in: | * * * *** ***** - - - --------------------------------------- _ _ _ out: |-





--- in: | This is [an example](http://example.com/ "Title") inline link. [This link](http://example.net/) has no title attribute. out: |-

This is an example inline link.

This link has no title attribute.

--- in: See my [About](/about/) page for details. out:

See my About page for details.

--- in: | This is [an example][id] reference-style link. This is [an example] [id] reference-style link. [id]: http://example.com/ "Optional Title Here" out: |-

This is an example reference-style link.

This is an example reference-style link.

--- in: | [Google][] [Google]: http://google.com/ out:

Google

--- in: | Visit [Daring Fireball][] for more information. [Daring Fireball]: http://daringfireball.net/ out:

Visit Daring Fireball for more information.

--- in: | 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" out: |-

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

--- in: | I get 10 times more traffic from [Google][] than from [Yahoo][] or [MSN][]. [google]: http://google.com/ "Google" [yahoo]: http://search.yahoo.com/ "Yahoo Search" [msn]: http://search.msn.com/ "MSN Search" out: |-

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