UBB Code is a variation on the HTML tags you may already be familiar with. Basically, it allows you to add functionality or style to your message that would normally require HTML. You can use UBB Code even though HTML is not enabled for collectSPACE: Messages. UBB Code requires less coding than HTML and it is safer to use (incorrect coding syntax will not lead to as many problems).
Current UBB Codes:
In the example above, the UBB Code automatically generates a hyperlink to the email address that is encased.
Unordered, bulleted list:
[list]
[*] This is the first bulleted item.
[*] This is the second bulleted item.
[/list]
This produces:
Making ordered lists is just as easy. Just add either [LIST=A] or [LIST=1]. Typing [List=A] will produce a list from A to Z. Using [List=1] will produce numbered lists.
Here's an example:
[list=A]
[*] This is the first bulleted item.
[*] This is the second bulleted item.
[/list]
This produces:
In the example above, the UBB Code automatically makes the graphic visible in your message. Note: the "http://" part of the URL is REQUIRED for the [img] code. Also note: some UBB forums may disable the [img] tag support to prevent objectionable images from being viewed.
In the example above, the UBB Code automatically blockquotes the text you reference.
[CODE]#!/usr/bin/perl
print "Content-type: text/html\n\n";
print "Hello World!";
[/CODE]
In the example above, the UBB Code automatically blockquotes the text you reference and preserves the formatting of the coded text.
Of Note
UBB Code is not case-sensitive (thus, you could use [URL] or [url]).
Incorrect UBB Code Usage:
[url] www.prime-web.com [/url] - do not put spaces between the bracketed code and the text you are applying the code to.
[email][email protected][email] - the end brackets must include a forward slash ([/email])