Markdown Test

Markdown is a simple plain text formatting syntax. There is a Perl
markdown-to-HTML converter that can be used as a blosxom plugin.
It also looks like it might be adaptable to support org-mode header
markup, so I'm giving it a try.

Level 1 Heading (Setext)
=======================

Level 2 Heading (Setext)
-----------------------

# Level 1 Heading (atx) #

## Level 2 Heading (atx) ##

### Level 3 Heading ###

Markdown supports two alternative heading markup styles, Setext and
atx. atx-style looks like it could be adapted to org-mode style.
However, will have to be careful that org-mode level-1 headings and
unordered list items don't get confused.

* unordered item 1
* unordered item 2

- unordered item '-'

1. ordered item 1
2. ordered item 2

> Block quote.
> This paragraph could be an extended quotation, represented as an
indented paragraph.