To add a link to your post, it is good enough to simply paste the URL into your post. For example, here is a link to the front page of PokemonDB: https://pokemondb.net/
What you're probably here for, though, is hyperlinking. This lets you put a link onto custom text, like so: Wikipedia article on Junichi Masuda. Below are some options for how to hyperlink.
Note that hyperlinking doesn't work in comments or wall posts, and all links are disabled on your account page (e.g. "About me").
Option 1 (easiest and best)
Contain the text you want to link inside [ ]
cornered braces, then immediately after this, put the link to the webpage inside normal brackets ( )
. For example, this...
[PokemonDB front page](https://pokemondb.net/)
...does this: PokemonDB front page
Option 2 (most intuitive)
Press the blue planet icon above the question/answer box. A popup will appear. Paste the web address into the popup and press OK. This will automatically generate the link and give you space to type the linked text.
Do not erase the markup this creates or the link will not work. Make sure there is space above the [1]:
that gets generated, or the link will not work.
Option 3 (HTML)
Use the <a>
HTML tag. For example, this...
<a href="https://pokemondb.net/">Link to PokemonDB front page</a>
...does this: Link to PokemonDB front page
Option 4 (recursive)
4.1: If you want to put the same link in your post multiple times, there is a way to avoid repeating the link using Markdown. For example, this...
My favourite Pokedex is [PokemonDB]. You can visit PokeBase on [PokemonDB].
[PokemonDB]: https://pokemondb.net/
...does this: My favourite Pokedex is PokemonDB. You can visit PokeBase on PokemonDB.
4.2: If you want to use the same link with different linked text, you can do this...
[Pokemon Database][pokemondb] is a website, shortened as [PokemonDB][pokemondb].
[pokemondb]: https://pokemondb.net/
...to do this: Pokemon Database is a website, shortened as PokemonDB.