metalsmith / markdown

A metalsmith plugin to render markdown files to HTML.
MIT License
63 stars 65 forks source link

Upgrade `marked` to 0.4.0 #31

Closed ilyaigpetrov closed 6 years ago

ilyaigpetrov commented 6 years ago

Input:

[abc](https://foo.com/baz(beep))

marked 0.3.9 output: <p><a href="https://foo.com/baz(beep">abc</a>)</p> marked 0.4.0 output: <p><a href="https://foo.com/baz(beep)">abc</a></p>

woodyrew commented 6 years ago

Implemented with #27