@nielsk I always try to use the link reference instead of a normal link in markdown, because it’s much easier to read a continues markdown text with links in this syntax (without a markdown renderer) than having a bunch of extra syntax and full links in the text. Going from a link reference the normal link syntax is obvious and easy to adapt (at least to me).
Link reference:
```
[Link][1]
…
[1]: https://example.com
```
So the correct link syntax is
`[Link](https://example.com)`
Maybe this helps?
There is also `<https://example.com>` when you just want a clickable link without any different link text.