0% found this document useful (0 votes)
61 views

Markdown Tip Sheet Quick Reference

This document provides examples of Markdown syntax including headers, blockquotes, lists, inline and code blocks, horizontal rules, emphasis, escapable characters, links, images, and attribution. It demonstrates how Markdown formats text styles and elements and how they appear when rendered as HTML. The examples cover the basic syntax for formatting various document elements in Markdown.

Uploaded by

Nimisha Singh
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
0% found this document useful (0 votes)
61 views

Markdown Tip Sheet Quick Reference

This document provides examples of Markdown syntax including headers, blockquotes, lists, inline and code blocks, horizontal rules, emphasis, escapable characters, links, images, and attribution. It demonstrates how Markdown formats text styles and elements and how they appear when rendered as HTML. The examples cover the basic syntax for formatting various document elements in Markdown.

Uploaded by

Nimisha Singh
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

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