When there is one thing I can’t remember it is the hyperlink-syntax of #markdown. But I also can’t remember in #orgmode if I have to write first the text or the link. Probably I am just getting old.

Yes I know there are mnemonics which I can’t remember either.

@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.

Example Domain