Links

FUDcode allows the user to enter URL and e-mail links in to their messages using the [url] & [email] tags.

URLs

A basic link can be created in a following fashion:

ex. 
	[url]http://fud.prohost.org/[/url] 
will be converted to 
	<a href="http://fud.prohost.org/">http://fud.prohost.org/</a> 
by the FUDcode parser.

To enter a link with a description other then the URL itself, the user may use the [url] tag in the following fashion:

ex. 
	[url=http://fud.prohost.org/]FUDforum Homepage[/url] 
will result in 
	<a href="http://fud.prohost.org/">FUDforum Homepage</a> 
HTML being generated.

FUDcode parser will also convert valid URLs into links by using functionality similar to the basic link.

ex. 
	http://fud.prohost.org/ 
will be converted to 
	<a href="http://fud.prohost.org/">http://fud.prohost.org/</a> 
by the FUDcode parser.

E-mails

A basic e-mail link can be created in a following fashion:

ex. 
	[email]myname@mydomain.com[/email] 
will be converted to 
	<a href="mailto:myname@mydomain.com">myname@mydomain.com</a> 
by the FUDcode parser.

To enter a e-mail link with a description other then the e-mail address itself, the user may use the [email] tag in the following fashion:

ex. 
	[email=myname@mydomain.com]Click Here to Send an E-mail[/email] 
this will result in  
	<a href="mailto:myname@mydomain.com">Click Here to Send an E-mail</a> 
HTML being generated.

FUDcode parser will also convert valid e-mail address' into e-mail links by using functionality similar to the basic e-mail link.

ex. 
	myname@mydomain.com 
will be converted to 
	<a href="mailto:myname@mydomain.com">myname@mydomain.com</a> 
by the FUDcode parser.