MARKDOWN
Headers # Text ## Text ### Text #### Text ##### Text ###### Text
<h1>Text</h1> <h2>Text</h2> <h3>Text</h3> <h4>Text</h4> <h5>Text</h5> <h6>Text</h6>
packetlife.net
Blockquotes > Lorem ipsum > dolor sit amet > Lorem ipsum dolor sit amet > > > > > Level one > Level two > > > Level three
<blockquote> <p>Lorem ipsum dolor sit amet</p> </blockquote> <blockquote> <p>Lorem ipsum dolor sit amet</p> </blockquote> <blockquote><p>Level one</p> <blockquote><p>Level two</p> <blockquote><p>Level three</p> </blockquote> </blockquote> </blockquote>
Lists
<ul> <li>Sizes</li> <li>Shapes</li> <li>Colors <ul> <li>Blue</li> <li>Green</li> </ul></li> </ul> <ol> <li>First</li> <li>Second</li> <li>Third <ol> <li>Alpha</li> <li>Bravo</li> </ol></li> </ol>
* Sizes * Shapes * Colors * Blue * Green
Inline Code Use `<div>` tags ``echo `uname -a```
Use <code><div></code> tags <code>echo `uname -a`</code>
Code Blocks Normal text #include <stdio.h>
<p>Normal text</p> <pre><code> #include <stdio.h> </code></pre>
1. First 2. Second 3. Third 1. Alpha 2. Bravo
Horizontal Rules * * * ***
<hr /> <hr />
- - ---
<hr /> <hr />
Emphasis *Emphasis* _Emphasis_ **Strong** __Strong__ *Super*emphasis **Super**strong
<em>Emphasis</em> <em>Emphasis</em> <strong>Strong</strong> <strong>Strong</strong> <em>Super</em>emphasis <strong>Super</strong>strong
Escapable Characters \ ` * _
Backslash Backtick Asterisk Underscore
( ) Parantheses # + . !
Hash mark Plus sign Hyphen Period Exclamation
{ } Curly braces [ ] Square brackets Links
[Google](http://google.com/) [Google](http://google.com/ "Search") [google]: http://google.com/ "Search" [Google][google] <http://google.com>
<a href="http://google.com/">Google</a> <a href="http://google.com/" title="Search">Google</a> <a href="http://google.com/" title="Search">Google</a> <a href="http://google.com/">http://google.com</a>
Images   [img1]: /path/to/img.jpg "Title" ![Alt text][img1]
<img src="/path/to/img.jpg" alt="Alt text"/> <img src="/path/to/img.jpg" alt="Alt text" title="Title"/> <img src="/path/to/img.jpg" alt="Alt text" title="Title"/>
Markdown is available at http://daringfireball.net/projects/markdown/ by Jeremy Stretch v2.0