100% found this document useful (2 votes)
234 views1 page

Markdown

This document provides an overview of Markdown syntax by showing examples of Markdown elements like headings, lists, blockquotes, emphasis, links, and images alongside their HTML equivalents. Key Markdown syntax elements include using # signs for headings, * or - for unordered lists, numbers for ordered lists, > for blockquotes, brackets and parentheses for links, ! for images, and various character styles for emphasis. The full Markdown syntax is available on the Markdown website.

Uploaded by

opexxx
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (2 votes)
234 views1 page

Markdown

This document provides an overview of Markdown syntax by showing examples of Markdown elements like headings, lists, blockquotes, emphasis, links, and images alongside their HTML equivalents. Key Markdown syntax elements include using # signs for headings, * or - for unordered lists, numbers for ordered lists, > for blockquotes, brackets and parentheses for links, ! for images, and various character styles for emphasis. The full Markdown syntax is available on the Markdown website.

Uploaded by

opexxx
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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

You might also like