showdown
showdown copied to clipboard
makeMarkdown leaves angle brackets inside links
Description
When converting an html string with links to markdown, some angle brackets get left in the markdown.
Input
converter.makeMarkdown('<a href="x">hi</a>')
Expected Output
[hi](x)
Actual Output
[hi](<x>)
Kindly inform, if this is getting picked up anytime soon?
Unfortunately this looks like expected behavior per #681. Hopefully they add an option to disable this, or at least not exhibit the behavior in flavors like GFM.
Thanks, I have already started to regex filter these unwanted brackets. No more dependent on release.