Sunteți pe pagina 1din 1

MARKDOWN packetlife.

net

Headers Blockquotes
# Text <h1>Text</h1> > Lorem ipsum <blockquote><p>Lorem ipsum dolor sit amet
> dolor sit amet </p></blockquote>
## Text <h2>Text</h2>
> Lorem ipsum dolor <blockquote><p>Lorem ipsum dolor sit amet
### Text <h3>Text</h3>
sit amet </p></blockquote>
#### Text <h4>Text</h4>
> Level one <blockquote><p>Level one</p>
##### Text <h5>Text</h5> > <blockquote><p>Level two</p>
> > Level two <blockquote><p>Level three</p>
###### Text <h6>Text</h6>
> > </blockquote></blockquote></blockquote>
# Text # <h1>Text</h1> > > > Level three

Lists Code Blocks


* Sizes <ul> Normal text <p>Normal text</p>
* Shapes <li>Sizes</li> <pre><code>#include &lt;stdio.h&gt;
* Colors <li>Shapes</li> #include <stdio.h> </code></pre>
* Blue <li>Colors<ul>
* Green <li>Blue</li> Code
<li>Green</li> Use `<div>` tags Use <code>&lt;div&gt;</code> tags
</ul></li></ul>
``echo `uname -a``` <code>echo `uname -a`</code>
1. First <ol>
2. Second <li>First</li> Horizontal Rules
3. Third <li>Second</li>
1. Alpha <li>Third<ol> * * * <hr /> - - - <hr />
2. Bravo <li>Alpha</li> *** <hr /> ----- <hr />
<li>Bravo</li>
</ol></li></ol> ***** <hr />

Emphasis Escapable Characters


*Text* <em>Text</em> \ Backslash ( ) Parentheses
_Text_ <em>Text</em> ` Backtick # Hash mark
**Strong** <strong>Text</strong> * Asterisk + Plus sign
__Text__ <strong>Text</strong> _ Underscore - Hyphen
*super*emphasized <em>super</em>emphasized { } Curly braces . Dot
**super**strong <strong>super</strong>strong [] Square brackets ! Exclamation

Links
[Google](http://google.com/) <a href="http://google.com/">Google</a>

[Google](http://google.com/ "Search") <a href="http://google.com/" title="Search">Google</a>

[google]: http://google.com/ "Search" <a href="http://google.com/" title="Search">Google</a>


[Google][google]

<http://google.com> <a href="http://google.com/">http://google.com</a>

Images
![Alt text](/path/to/img.jpg) <img src="/path/to/img.jpg" alt="Alt text"/>
![Alt text](/path/to/img.jpg "Title") <img src="/path/to/img.jpg" alt="Alt text" title="Title"/>

[img1]: /path/to/img.jpg "Title" <img src="/path/to/img.jpg" alt="Alt text" title="Title"/>


![Alt text][img1]

Markdown is available at http://daringfireball.net/projects/markdown/

by Jeremy Stretch v1.1

S-ar putea să vă placă și