bobtfish/text-markdown

Links within two block elements not expanded

Opened this issue · 0 comments

I have this:

<div markdown="1">
<div>
[Link in two divs](http://example.com/)
</div>
</div>

I think that should be expanded to:

<div>
<div>
<p><a href="http://example.com/">Link in two divs</a></p>
</div>
</div>

But I end up with:

<div>
<div>
[Link in two divs](http://example.com/)
</div>
</div>

Failing test file attached

links.t.gz