Markdown links are being removed
See original GitHub issueI recently upgraded from v0.3.12 to v0.3.33.
In one of the versions after v0.3.12 it has started removing the markdown links in my Type-Doc comments 😦
Input
interface Test {
/**
* Name of something.
*
* See [documentation][1] for more details.
*
* [1]: https://www.documentation.com
*/
name?: string
}
Output (Unwanted removal of link markdown)
interface Test {
/**
* Name of something.
*
* See documentation for more details.
*/
name?: string
}
The output should be retaining the markdown link.
Issue Analytics
- State:
- Created a year ago
- Comments:10 (10 by maintainers)
Top Results From Across the Web
How do I prevent auto-generated links in the GitHub wiki?
Original answer (2014): This isn't limited to wiki page, and is part of the GFM (GitHub Flavored Markdown) url autolinking feature.
Read more >Markdown for url without hyperlink · Issue #9566 - GitHub
I would think there needs to be a way to remove the automatically generated hyperlinks, or have it documented if there is.
Read more >Remove links (URLs) from markdown files? : r/shortcuts - Reddit
I'm trying to remove hyperlinks (i.e., URLs) from Markdown files formatted like this: (URL title here)[http://www.urlhere.com]. Does anyone ...
Read more >Remove Markdown Links - Visual Studio Marketplace
Select the text from which all Markdown links should be removed and execute the Remove Markdown Links command via the command palette.
Read more >When creating a link using Markdown syntax the protocol is ...
When creating a link using Markdown syntax the protocol is removed ... What happened: after the link has been created, selecting Edit Link…...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

This is a test link to test it works in GitHub
Fixed v0.3.36