**stars**
__underscores__
<b>b tag</b>
<strong>strong tag</strong>
*stars*
_underscores_
<i>i tag</i>
<em>em tag</em>
<u>foo</u>
~~foo~~
<strike>foo</strike>

<img src="https://picsum.photos/50/50"
alt="alt" title="Title">
[](http://example.com)
<a href="http://example.com">
<img src="https://picsum.photos/50/50">
</a>
1. foo
1. bar
<ol>
<li>closed</li>
<li>tags</li>
</ol>
<ol>
<li>unclosed
<li>tags
</ol>
- with
- dashes
* with
* stars
<ul>
<li>closed</li>
<li>tags</li>
</ul>
<ul>
<li>unclosed
<li>tags
</ul>
- [] unchecked
- [ ] unchecked with space
- [x] checked lower
- [X] checked upper
1. One
- Two
- Three
1. Four
<ol>
<li>One
<ul>
<li>Two</li>
<li>Three</li>
</ul>
</li>
<li>Four</li>
</ol>
Use the `foo()` method
`The whole line is code`
``Double backticks to `escape` a backtick``
Use the <code>foo()</code> method
<code>The whole line is code</code>
// Indented code
foo();
// Indented code
foo();
```
// Fenced code
foo();
```
// Fenced code
foo();
<pre>// In a pre
foo();</pre>
Three
---
Dashes
Three
***
Stars
This
<hr>
That
# Single hash
Triple equals below
===
<h1>Foo</h1>
## Double hash
Triple dash below
---
<h2>Foo</h2>
### Foo
<h3>Foo</h3>
#### Foo
<h4>Foo</h4>
##### Foo
<h5>Foo</h5>
###### Foo
<h6>Foo</h6>
Some text.
More text.
<p>One.</p><p>Line.</p>
<p>Two.</p>
<p>Lines.</p>
Line breaks
aren't rendered
Use two spaces
to create a line break
Line breaks
aren't rendered
Use the br tag <br/> to create a line break
> Quote here
Quote here
> Multiple
> Lines
Multiple
Lines
> Includes
>
> a blank line
Includes
a blank line
> Nested
>> Quotes
Nested
Quotes
<blockquote>Quote here</blockquote>
Quote here
<blockquote>Nested
<blockquote>Quotes</blockquote>
</blockquote>
Nested
Quotes
| Col1 | Col2 |
| ---- | ---- |
| foo | bar |
<table>
<tr>
<td>foo</td>
<td>bar</td>
</tr>
</table>
Markdown <i>containing</i> HTML.
This \*is\* cool
This <is> cool
<span style="color: blue;">blue</span>
<span style="background-color: blue;">blue</span>