Skip to content

Instantly share code, notes, and snippets.

@jelmerdemaat
Last active April 7, 2016 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jelmerdemaat/e6de73f6a837d1337bb70470b1e7bf4b to your computer and use it in GitHub Desktop.
Save jelmerdemaat/e6de73f6a837d1337bb70470b1e7bf4b to your computer and use it in GitHub Desktop.
Test markdown
<p>
<strong>Bold</strong>
<strong>Bold</strong>
</p>
<p>
<em>Italic</em>
<em>Italic</em>
</p>
<p>
<a href="http://netvlies.nl">Link</a>
</p>
<p>
<a href="https://camo.githubusercontent.com/d3543969b232394ba533e16b6b00bdc0b0cc4d48/68747470733a2f2f7777772e6e6574766c6965732e6e6c2f696d672f6c6f676f732f62726162616e747362657374652e706e67" target="_blank"><img src="https://camo.githubusercontent.com/d3543969b232394ba533e16b6b00bdc0b0cc4d48/68747470733a2f2f7777772e6e6574766c6965732e6e6c2f696d672f6c6f676f732f62726162616e747362657374652e706e67" alt="Image" data-canonical-src="https://www.netvlies.nl/img/logos/brabantsbeste.png" style="max-width:100%;"></a>
</p>
<blockquote>
<p>
Blockquote
Blockquote
</p>
</blockquote>
<p>A paragraph.</p>
<p>A paragraph after 1 blank line. </p>
<ul>
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ol>
<p>Horizontal Rule</p>
<hr>
<p><code>Inline code</code> with backticks</p>
<pre><code># code block
print '3 backticks or'
print 'indent 4 spaces'
</code></pre>

Bold Bold

Italic Italic

Link

Image

Blockquote Blockquote

A paragraph.

A paragraph after 1 blank line.

  • List
  • List
  • List
  1. One
  2. Two
  3. Three

Horizontal Rule


Inline code with backticks

# code block
print '3 backticks or'
print 'indent 4 spaces'
**Bold** __Bold__
*Italic* _Italic_
[Link](http://netvlies.nl)
![Image](https://www.netvlies.nl/img/logos/brabantsbeste.png)
> Blockquote
> Blockquote
A paragraph.
A paragraph after 1 blank line.
* List
* List
* List
1. One
2. Two
3. Three
Horizontal Rule
---
`Inline code` with backticks
```
# code block
print '3 backticks or'
print 'indent 4 spaces'
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment