SlideShare a Scribd company logo
1 of 1
MARKDOWN                                                                                           packetlife.net
               Headers                                                      Blockquotes
# Text               <h1>Text</h1>                                          <blockquote>
                                           > Lorem ipsum
                                                                            <p>Lorem ipsum dolor sit amet</p>
## Text              <h2>Text</h2>         > dolor sit amet                 </blockquote>
### Text             <h3>Text</h3>                                          <blockquote>
                                           > Lorem ipsum dolor
                                                                            <p>Lorem ipsum dolor sit amet</p>
#### Text            <h4>Text</h4>         sit amet                         </blockquote>
##### Text           <h5>Text</h5>                                          <blockquote><p>Level one</p>
                                           >   Level one
                                           >                                  <blockquote><p>Level two</p>
###### Text          <h6>Text</h6>
                                                                                <blockquote><p>Level three</p>
                                           >   > Level two
                                                                                </blockquote>
                  Lists                    >   >                              </blockquote>
                <ul>
                                           >   > > Level three              </blockquote>
                  <li>Sizes</li>
* Sizes           <li>Shapes</li>                                           Inline Code
* Shapes          <li>Colors
* Colors          <ul>                     Use `<div>` tags                 Use <code>&lt;div&gt;</code> tags
    * Blue          <li>Blue</li>
                                           ``echo `uname -a```              <code>echo `uname -a`</code>
    * Green         <li>Green</li>
                  </ul></li>
                </ul>
                                                                            Code Blocks

                <ol>                       Normal text                       <p>Normal text</p>
                  <li>First</li>                                             <pre><code>
1. First          <li>Second</li>                                            #include &lt;stdio.h&gt;
                                                 #include <stdio.h>          </code></pre>
2. Second         <li>Third
3. Third          <ol>
                    <li>Alpha</li>                                        Horizontal Rules
    1. Alpha
    2. Bravo        <li>Bravo</li>         * * *              <hr />               - - -           <hr />
                  </ol></li>
                </ol>                      ***                <hr />               ---             <hr />

                    Emphasis                                                Escapable Characters
*Emphasis*           <em>Emphasis</em>                       Backslash                  ( ) Parantheses
_Emphasis_           <em>Emphasis</em>                 `      Backtick                   #   Hash mark

**Strong**           <strong>Strong</strong>           *      Asterisk                   +   Plus sign

__Strong__           <strong>Strong</strong>           _      Underscore                 -   Hyphen

*Super*emphasis      <em>Super</em>emphasis            { } Curly braces                  .   Period

**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                                                                                                v2.0

More Related Content

Viewers also liked (16)

Is is
Is isIs is
Is is
 
Physical terminations
Physical terminationsPhysical terminations
Physical terminations
 
I pv4 subnetting
I pv4 subnettingI pv4 subnetting
I pv4 subnetting
 
Ios i pv4_access_lists
Ios i pv4_access_listsIos i pv4_access_lists
Ios i pv4_access_lists
 
Ieee 802.11 wlan
Ieee 802.11 wlanIeee 802.11 wlan
Ieee 802.11 wlan
 
Rip
RipRip
Rip
 
Nat
NatNat
Nat
 
I psec
I psecI psec
I psec
 
I pv6
I pv6I pv6
I pv6
 
Ios zone based-firewall
Ios zone based-firewallIos zone based-firewall
Ios zone based-firewall
 
Ios interior routing_protocols
Ios interior routing_protocolsIos interior routing_protocols
Ios interior routing_protocols
 
Ppp
PppPpp
Ppp
 
Qo s
Qo sQo s
Qo s
 
Spanning tree
Spanning treeSpanning tree
Spanning tree
 
I pv4 multicast
I pv4 multicastI pv4 multicast
I pv4 multicast
 
Ospf
OspfOspf
Ospf
 

Similar to Markdown

LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4Amanda Case
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSSBeckhamWee
 
Html notes with Examples
Html notes with ExamplesHtml notes with Examples
Html notes with Examplesisha
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單偉格 高
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5Terry Ryan
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L examAnne Perera
 
Lesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLLesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLOlivia Moran
 
Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Linux User's Group
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niazikram niaz
 
3 Layers of the Web - Part 1
3 Layers of the Web - Part 13 Layers of the Web - Part 1
3 Layers of the Web - Part 1Jeremy White
 

Similar to Markdown (20)

Media wiki
Media wikiMedia wiki
Media wiki
 
LIS3353 SP12 Week 4
LIS3353 SP12 Week 4LIS3353 SP12 Week 4
LIS3353 SP12 Week 4
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS
 
Learn HTML Easier
Learn HTML EasierLearn HTML Easier
Learn HTML Easier
 
Html notes with Examples
Html notes with ExamplesHtml notes with Examples
Html notes with Examples
 
TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單TOSSUG HTML5 讀書會 新標籤與表單
TOSSUG HTML5 讀書會 新標籤與表單
 
Semantic HTML5
Semantic HTML5Semantic HTML5
Semantic HTML5
 
Session no 1
Session no 1Session no 1
Session no 1
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Print this
Print thisPrint this
Print this
 
HTML practical guide for O/L exam
HTML practical guide for O/L examHTML practical guide for O/L exam
HTML practical guide for O/L exam
 
Introduction html
Introduction htmlIntroduction html
Introduction html
 
Lesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLLesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTML
 
Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
3 Layers of the Web - Part 1
3 Layers of the Web - Part 13 Layers of the Web - Part 1
3 Layers of the Web - Part 1
 
Session no 1 html
Session no 1 htmlSession no 1 html
Session no 1 html
 
HTML&CSS_notes.pdf
HTML&CSS_notes.pdfHTML&CSS_notes.pdf
HTML&CSS_notes.pdf
 
1.1 html lec 1
1.1 html lec 11.1 html lec 1
1.1 html lec 1
 

More from Mohamed Gamel (13)

Vyatta subnet range_cheat_sheet
Vyatta subnet range_cheat_sheetVyatta subnet range_cheat_sheet
Vyatta subnet range_cheat_sheet
 
Voip basics
Voip basicsVoip basics
Voip basics
 
Vla ns
Vla nsVla ns
Vla ns
 
Tcpdump
TcpdumpTcpdump
Tcpdump
 
Scapy
ScapyScapy
Scapy
 
Ieee 802.1 x
Ieee 802.1 xIeee 802.1 x
Ieee 802.1 x
 
Frame mode mpls
Frame mode mplsFrame mode mpls
Frame mode mpls
 
First hop redundancy
First hop redundancyFirst hop redundancy
First hop redundancy
 
Eigrp
EigrpEigrp
Eigrp
 
Common ports
Common portsCommon ports
Common ports
 
Cisco ios versions
Cisco ios versionsCisco ios versions
Cisco ios versions
 
Bgp
BgpBgp
Bgp
 
All ospf in one image
All  ospf in one imageAll  ospf in one image
All ospf in one image
 

Markdown

  • 1. MARKDOWN packetlife.net Headers Blockquotes # Text <h1>Text</h1> <blockquote> > Lorem ipsum <p>Lorem ipsum dolor sit amet</p> ## Text <h2>Text</h2> > dolor sit amet </blockquote> ### Text <h3>Text</h3> <blockquote> > Lorem ipsum dolor <p>Lorem ipsum dolor sit amet</p> #### Text <h4>Text</h4> sit amet </blockquote> ##### Text <h5>Text</h5> <blockquote><p>Level one</p> > Level one > <blockquote><p>Level two</p> ###### Text <h6>Text</h6> <blockquote><p>Level three</p> > > Level two </blockquote> Lists > > </blockquote> <ul> > > > Level three </blockquote> <li>Sizes</li> * Sizes <li>Shapes</li> Inline Code * Shapes <li>Colors * Colors <ul> Use `<div>` tags Use <code>&lt;div&gt;</code> tags * Blue <li>Blue</li> ``echo `uname -a``` <code>echo `uname -a`</code> * Green <li>Green</li> </ul></li> </ul> Code Blocks <ol> Normal text <p>Normal text</p> <li>First</li> <pre><code> 1. First <li>Second</li> #include &lt;stdio.h&gt; #include <stdio.h> </code></pre> 2. Second <li>Third 3. Third <ol> <li>Alpha</li> Horizontal Rules 1. Alpha 2. Bravo <li>Bravo</li> * * * <hr /> - - - <hr /> </ol></li> </ol> *** <hr /> --- <hr /> Emphasis Escapable Characters *Emphasis* <em>Emphasis</em> Backslash ( ) Parantheses _Emphasis_ <em>Emphasis</em> ` Backtick # Hash mark **Strong** <strong>Strong</strong> * Asterisk + Plus sign __Strong__ <strong>Strong</strong> _ Underscore - Hyphen *Super*emphasis <em>Super</em>emphasis { } Curly braces . Period **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 v2.0