mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
30aa18c003
Allow some edge cases to parse correctly. Example: `![img](.images/cat(1).png)`, `![img](<.image(1)/cat(1).png>)`, `[link](<>)`
6 lines
333 B
HTML
6 lines
333 B
HTML
<p><a href="./images(1)/cat(1).png">link</a></p>
|
|
<p><a href="./images(1)/cat(1).png" title="title">link</a></p>
|
|
<p><img src="./images(1)/cat(1).png" alt="image" /></p>
|
|
<p><img src="./images(1)/cat(1).png" alt="image" title="title" /></p>
|
|
<p><img src="./images(1)/cat(1).png" alt="image" title="title" width="800" height="600" /></p>
|