Cocoanetics / DTMarkdownParser

An event-based parser for markdown text
BSD 2-Clause "Simplified" License
197 stars 15 forks source link

Parsing hyperlink with exclamation mark in text link #17

Open Bluezen opened 10 years ago

Bluezen commented 10 years ago

Parsing

[some ! text](http://test.com)

is rendered

<p>[some ! text](<a href="http://test.com">http://test.com</a>)</p>

instead of

<p><a href="http://test.com">some ! text</a></p>