Markdown Editor (beta)


Markdown source:

Preview:

top ^

HTML Source:

top ^


Basic Syntax   (How-to)

Headers:
# Header 1 #

## Header 2 ##

###### Header 6
Header 1
========

Header 2
--------
Emphasis:
**bold**  *italic*
__bold__  _italic_

***bold & italic***
Unordered list with paragraphs:
*  Item 1

   With paragraph.

*  item 2
Ordered list:
1.  Item 1
2.  item 2
Nested list:
* Coffee
   * Latte
   * Cappucino
* Tea
   * Green tea
   * Thai tea
Link:
[text](http://url.com)
Image:
![alt text](/path/img.jpg)
Code (auto escape):
`<html>`
Blockquotes:
> This is blockqoute.
>> Nested blockqoute. 
Horizontal rules:
---

*** 
Escape character:
\

eg,
10\. 

Inspired by dingus project (with enhancements).

And with thank to Michel Fortin's markdown parser.