Hello team,
URLs with a closing round bracket ) at the end, doesn't render the link correct.
For instance, if we write below link:
[Comment on Wikipedia](en.wikipedia.org/wiki/Comment_(computer_programmi…))
It renders like this:
Notice the extra round bracket the end in above.
And when user clicks on the link, instead of redirecting them to right link, it redirects them to: en.wikipedia.org/wiki/Comment_(computer_programmi… (notice that round bracket is removed from the url).
Syed Fazle Rahman
Building Bug0, an AI-native E2E testing platform for modern apps - co-founder & ceo @ Hashnode
Hey Dharmen Shah,
You have to escape such characters or use URL encoding. For example:
[Syntax](en.wikipedia.org/wiki/Syntax_%28programming_langu…)Alternatively, you can use the link index method as follows:
link to [IHtmlDocument2 reference][1] [1]: msdn.microsoft.com/en-us/library/aa752574(VS.85).aspx