How to add a link in markdown
To add a URL link into your markdown text simply write its title in square brackets, followed by the link target in round brackets:
This is [a link to google](https://www.google.com/)
which will give us a clickable link:
This way only the text is visible and clicking on it will take you to the url destination.
We can also refer to a local resource on our server:
go back to [docs homepage](/docs/home)
which results in a similar link to our overview page:
go back to docs homepage
Additionally, almost all text editors (MDTX included) achieve the same via a link button. It will usually either give you a modal where you paste the link in or like ours let you highlight a portion of the text to put into square brackets and then simply paste the link into round brackets next to it to achieve a clickable URL link.