URL: https://www.progressiverobot.com/markdown-links-anchors/

Creating links/anchors using markdown. The title is optional:

				
					
[Best website](https://alligator.io/ "Title Text")

				
			

Result

markdown illustration for: Result

The above results in the following HTML:

				
					
<a href="https://alligator.io" title="Title Text">Best website</a>