Elements

<h1 id="heading-1">Heading 1</h1> <h2 id="heading-2">Heading 2</h2> <h3 id="heading-3">Heading 3</h3> <h4 id="heading-4">Heading 4</h4> <h5 id="heading-5">Heading 5</h5> <h6 id="heading-6">Heading 6</h6> <hr> <h5 id="emphasis">Emphasis</h5> <p>Emphasis, aka italics, with <em>asterisks</em> or <em>underscores</em>.</p> <p>Strong emphasis, aka bold, with <strong>asterisks</strong> or <strong>underscores</strong>.</p> <p>Combined emphasis with <strong>asterisks and <em>underscores</em></strong>.</p> <p>Strikethrough uses two tildes. <del>Scratch this.</del></p> <hr> <h5 id="link">Link</h5> <p><a href="https://www.google.com">I&rsquo;m an inline-style link</a></p> <p><a href="https://www.google.com" title="Google's Homepage">I&rsquo;m an inline-style link with title</a></p> <p><a href="https://www.mozilla.org">I&rsquo;m a reference-style link</a></p> <p><a href="../blob/master/LICENSE">I&rsquo;m a relative reference to a repository file</a></p> <p><a href="http://slashdot.org">You can use numbers for reference-style link definitions</a></p> <p>Or leave it empty and use the <a href="http://www.reddit.com">link text itself</a>.</p> <p>URLs and URLs in angle brackets will automatically get turned into links. <a href="http://www.example.com">http://www.example.com</a> or <a href="http://www.example.com">http://www.example.com</a> and sometimes example.com (but not on Github, for example).</p> <p>Some text to show that the reference links can follow later.</p> <hr> <h5 id="paragraph">Paragraph</h5> <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam nihil enim maxime corporis cumque totam aliquid nam sint inventore optio modi neque laborum officiis necessitatibus, facilis placeat pariatur! Voluptatem, sed harum pariatur adipisci voluptates voluptatum cumque, porro sint minima similique magni perferendis fuga! Optio vel ipsum excepturi tempore reiciendis id quidem? Vel in, doloribus debitis nesciunt fugit sequi magnam accusantium modi neque quis, vitae velit, pariatur harum autem a! Velit impedit atque maiores animi possimus asperiores natus repellendus excepturi sint architecto eligendi non, omnis nihil. Facilis, doloremque illum. Fugit optio laborum minus debitis natus illo perspiciatis corporis voluptatum rerum laboriosam.</p> <hr> <h5 id="ordered-list">Ordered List</h5> <ol> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> </ol> <hr> <h5 id="unordered-list">Unordered List</h5> <ul> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> <li>List item</li> </ul> <hr> <h4 id="notice">Notice</h4> <div class="notices note" ><p>This is a simple note.</p></div> <div class="notices tip" ><p>This is a simple tip.</p></div> <div class="notices info" ><p>This is a simple info.</p></div> <hr> <h4 id="tab">Tab</h4> <div class="code-tabs"> <ul class="nav nav-tabs"></ul> <div class="tab-content"> <div class="tab-pane" title="first"> This is first tab </div> <div class="tab-pane" title="second"> this is second tab </div> <div class="tab-pane" title="third"> this is third tab </div> </div> </div> <hr> <h5 id="code-and-syntax-highlighting">Code and Syntax Highlighting</h5> <p>Inline <code>code</code> has <code>back-ticks around</code> it.</p> <div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-javascript" data-lang="javascript"><span style="color:#66d9ef">var</span> <span style="color:#a6e22e">s</span> <span style="color:#f92672">=</span> <span style="color:#e6db74">&#34;JavaScript syntax highlighting&#34;</span>; <span style="color:#a6e22e">alert</span>(<span style="color:#a6e22e">s</span>); </code></pre></div><div class="highlight"><pre style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-python" data-lang="python">s <span style="color:#f92672">=</span> <span style="color:#e6db74">&#34;Python syntax highlighting&#34;</span> <span style="color:#66d9ef">print</span> s </code></pre></div><pre><code>No language indicated, so no syntax highlighting. But let's throw in a &lt;b&gt;tag&lt;/b&gt;. </code></pre><hr> <h5 id="blockquote">Blockquote</h5> <blockquote> <p>This is a blockquote example.</p> </blockquote> <hr> <h5 id="inline-html">Inline HTML</h5> <p>You can also use raw HTML in your Markdown, and it&rsquo;ll mostly work pretty well.</p> <dl> <dt>Definition list</dt> <dd>Is something people use sometimes.</dd> <dt>Markdown in HTML</dt> <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd> </dl> <hr> <h5 id="tables">Tables</h5> <p>Colons can be used to align columns.</p> <table> <thead> <tr> <th>Tables</th> <th align="center">Are</th> <th align="right">Cool</th> </tr> </thead> <tbody> <tr> <td>col 3 is</td> <td align="center">right-aligned</td> <td align="right">$1600</td> </tr> <tr> <td>col 2 is</td> <td align="center">centered</td> <td align="right">$12</td> </tr> <tr> <td>zebra stripes</td> <td align="center">are neat</td> <td align="right">$1</td> </tr> </tbody> </table> <p>There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don&rsquo;t need to make the raw Markdown line up prettily. You can also use inline Markdown.</p> <table> <thead> <tr> <th>Markdown</th> <th>Less</th> <th>Pretty</th> </tr> </thead> <tbody> <tr> <td><em>Still</em></td> <td><code>renders</code></td> <td><strong>nicely</strong></td> </tr> <tr> <td>1</td> <td>2</td> <td>3</td> </tr> </tbody> </table> <hr> <h5 id="image">Image</h5> <p><img src="img-1.jpg" alt="image"></p> <hr> <h5 id="youtube-video">Youtube video</h5> <div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;"> <iframe src="https://www.youtube.com/embed/C0DPdy98e4c" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe> </div>