evilstreak / markdown-js

A Markdown parser for javascript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't automatically wrap certain tags with p

jaydenseric opened this issue · comments

For example:

![Alt text](/path/to/img.jpg)

Results in:

<p><img alt="Alt text" src="/path/to/img.jpg"/></p>

When it should result in:

<img alt="Alt text" src="/path/to/img.jpg"/>

Related: