You are on page 1of 1

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>&lt;div&gt;</code> tags <code>echo `uname -a`</code>

Code Blocks Normal text #include <stdio.h>


<p>Normal text</p> <pre><code> #include &lt;stdio.h&gt; </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 ![Alt text](/path/to/img.jpg) ![Alt text](/path/to/img.jpg "Title") [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

You might also like