mirror of
https://github.com/markedjs/marked
synced 2024-11-23 01:38:57 +00:00
04e04b10d4
Link with names that clashed with properties inherited from the Object prototype (such as "constructor") were not expanding. This fixes this issue. Before this change, markdown of this form...: Link: [constructor][]. [constructor]: https://example.org/ ...resulted in HTML output of this form: <p>Link: [constructor][].</p> With this change, it now renders as expected: <p>Link: <a href="https://example.org/">constructor</a>.</p> |
||
---|---|---|
.. | ||
marked.js |