Markdown »

# H1 #

## H2 ##

### etc. ###


*Italic text*. **Bold text**.
That is, <em> and <strong>.


Blockquotes. Breaks and Markdown code work.
> Blockquotes. Breaks, *and Markdown code* work.

Nesting works as well.
> > Nesting works as well.


  • Bulleted Lists:
  • As so.
  1. Numbered lists?
  2. Like this.

PHP Markdown: [PHP Markdown](http://michelf.com/projects/php-markdown/ "PHP Markdown")
Markdown Syntax: [Markdown Syntax][MD]
The Dingus: [The Dingus][]
http://www.example.com: <http://www.example.com>
example@example.com: <example@example.com>

[MD]: http://daringfireball.net/projects/markdown/syntax "Markdown Proper"
[The Dingus]: http://daringfireball.net/projects/markdown/dingus "Dingus"


![Image Alt Text](/path/to/image.png "Optional Title Text")
![Image Alt Text][image]

[image]: /path/to/image.png "Optional Title Text"

Updated 2009-07-06 23:23:49 by anon