<p>Many people prefer <a href="http://daringfireball.net/projects/markdown/" target="_blank">Markdown</a>
over standard HTML because it is less verbose. Unlike Textile, Markdown
doesn’t try to replicate all of the features implemented by regular
HTML, instead it encourages the use of inline HTML. Markdown is very similar
to the formatting used in a standard plain-text e-mail. This filter also uses
<a href="http://daringfireball.net/projects/smartypants/" target="_blank">SmartyPants</a>
to curl quotes and insert correct punctuation.</p>
<table id="filter-reference-table" border="0" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>To see this:</th>
<th>Type this:</th>
<tr>
</thead>
<tbody>
<tr>
<td><strong>bold</strong></td>
<td><pre>**bold**</pre></td>
</tr>
<tr>
<td><em>italics</em></td>
<td><pre>_italics_</pre></td>
</tr>
<tr>
<td><del>strikethrough</del></td>
<td><pre><del>strikethrough</del></pre></td>
</tr>
<tr>
<td>x<sup>superscript</sup></td>
<td><pre>x<sup>superscript</sup></pre></td>
</tr>
<tr>
<td>a<sub>subscript</sub></td>
<td><pre>a<sub>subscript</sub></pre></td>
</tr>
<tr>
<td><code>code phrase</code></td>
<td><pre>`code phrase`</pre></td>
</tr>
<tr>
<td>link to <a href="http://radiantcms.org">Radiant CMS</a></td>
<td><pre>link to [Radiant CMS](http://radiantcms.org)</pre></td>
</tr>
<tr>
<td><acronym title="Just Another Acronym">JAA</acronym></td>
<td><pre><acronym title="Just Another Acronym">JAA</acronym></td>
</tr>
<tr>
<td><span style="color:red">Red Text</span></td>
<td><pre><span style="color:red">Red Text</span></pre></td>
</tr>
<tr>
<td>
<p>A bulleted list:</p>
<ul>
<li>item one</li>
<li>item two</li>
<li>item three</li>
</ul>
</td>
<td>
<pre>A bulleted list:
* item one
* item two
* item three</pre>
</td>
</tr>
<tr>
<td>
<p>A numbered list:</p>
<ol>
<li>item one</li>
<li>item two</li>
<li>item three</li>
</ol>
</td>
<td>
<pre>A numbered list:
1. item one
2. item two
3. item three</pre>
</td>
</tr>
<tr>
<td>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
</td>
<td>
<pre>Heading 1
---------
Heading 2
=========
### Heading 3
#### Heading 4</pre>
</td>
</tr>
<tr>
<td><blockquote>Roses are red, violets are blue, Markdown is nice, and so are you!</blockquote></td>
<td>
<pre>> Roses are red,
> violets are blue,
> Markdown is nice,
> and so are you!</pre>
</tr>
<tr>
<td><img src="http://radiantcms.org/button.png" alt="" /></td>
<td><pre></pre></td>
</tr>
</tbody>
</table>
<p>Advanced users may want to play around with the
<a href="http://daringfireball.net/projects/markdown/dingus/" target="_blank">Markdown
Dingus</a> or review the
<a href="http://daringfireball.net/projects/markdown/syntax/" target="_blank">official Markdown
Reference</a>.</p>