# Differences

Results different than commonmark.


## Setext headings


Example: 93


```````````````````````````````` example
> foo
bar
===
.
<blockquote>
<h1>foo
bar</h1>
</blockquote>
````````````````````````````````

If the dash is less than 3, it is not a `<hr>`, in this case, it
can be rendered into `<h2>`.

```````````````````````````````` example
- # Foo
- Bar
  --
  baz
.
<ul>
<li>
<h1>Foo</h1>
</li>
<li>
<h2>Bar</h2>
baz</li>
</ul>
````````````````````````````````

## Image

Example 573

```````````````````````````````` example
![foo ![bar](/url)](/url2)
.
<p><img src="/url2" alt="foo ![bar](/url)" /></p>
````````````````````````````````

## Link

Example 517

```````````````````````````````` example
[foo [bar](/uri)](/uri)
.
<p><a href="/uri">foo [bar](/uri)</a></p>
````````````````````````````````

Example 518

```````````````````````````````` example
[foo *[bar [baz](/uri)](/uri)*](/uri)
.
<p><a href="/uri">foo <em>[bar [baz](/uri)](/uri)</em></a></p>
````````````````````````````````

Example 519

```````````````````````````````` example
![[[foo](uri1)](uri2)](uri3)
.
<p><img src="uri3" alt="[foo](uri1)" /></p>
````````````````````````````````
