| What is BB Code? |
| It is a set of codes that allows
you to format forum posts. It's like a simplified version
of HTML. |
| Typing |
Produces |
| http://www.example.com/ |
http://www.example.com/ |
| [url]www.example.com[/url] |
http://www.example.com/ |
| [url=http://www.example.com/]example[/url] |
example |
| [email]dweezil@zappa.org[/email] |
dweezil@zappa.org |
| [b]dachshund[/b] |
dachshund |
| [i]schnauzer[/i] |
schnauzer |
[list]
[*] onions
[*] potatoes
[*] chihuahua
[/list] |
- onions
- potatoes
- chihuahua
|
[list=1]
[*] Lather.
[*] Rinse.
[*] See #1.
[/list] |
- Lather.
- Rinse.
- See #1.
|
| [quote]A cauliflower
is nothing more than a cabbage with a college education.[/quote] |
QUOTE:
|
A cauliflower is nothing more than a cabbage
with a college education.
|
|
|
[code]#!/usr/bin/perl
while ($cauliflower != $cabbage) {
$cabbage++;
}[/code] |
CODE:
|
#!/usr/bin/perl
while ($cauliflower != $cabbage) {
$cabbage++;
}
|
|
|