How do you add links in descriptions?
-
Hey! Forgive me if I'm posting this in the wrong place, just wanted to see if someone could help me out with something. So on a few mods, I've noticed the author has made links to other pages on/off site, and was wondering how exactly you do this.
An example of what I'm talking about can be found here: https://www.gta5-mods.com/scripts/addonpeds-asi-pedselector
In the description you'll see that there are parts of text which can be clicked to redirect you elsewhere.
I imagine it's probably really simple, but I haven't a clue how to do it. (Doesn't have the formatting settings like it does here on the forums (or at least not that I can see), and I haven't a clue if its based on some sort of code, and if so, what that code is exactly).
Hopefully you know what I'm talking about, thanks in advance for any help.
-
<a href=" link " target="_blank"> text </a>
-
@Jacobmaate The description on GTA5-Mods.com supports basic HTML tags for formatting. These are the allowed tags: <b>, <i>, <u>, <a>, <ul>, <ol>, <li>
b is bold, i is italicize, u is underline, a is link, ul is unordered list, ol is ordered list, and li is list item.@HarHam The target attribute is unnecessary. This works just fine:
<a href="https://www.gta5-mods.com">GTA5-Mods</a>
-
@Jitnaught Thank you for clarifying that, appreciate it