|
|
|
|
|
|
Compose tips
- Web page addresses and e-mail addresses turn into links automatically.
- Lines and paragraphs are automatically recognized. The <br /> line break, <p> paragraph and </p> close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.
BBCode Guide
Introduction
BBCode allows you to specify formatting rules for your text,
even if you are not allowed to use HTML in your posts. BBCode
originated from the forum software named PHPBB, and GamersGlobal
offers a special implementation of it.
In BBCode terms, you use "tags" to add formatting to your text. Every
tag is enclosed in [ and ] brackets.
If you want to mark some region in your text, you need to use an opening
tag and a closing tag. Closing tags start with [/, as
you will see in the examples below. If you mistype a tag or forget to
close it, you will not get the desired formatting.
Essential formats: |
| write: | to get: |
| [b]bold[/b] | bold |
| [link=http://example.com]click![/link] | click! |
| [i]italic[/i] | italic |
| [quote]someone said[/quote] | someone said |
Additional formats: |
| write: | to get: |
| [s]old text[/s] | old text |
| [b][i]bold + italic[/i][/b] | bold + italic |
| [spoiler]he's his father[/spoiler] | he's his father |
| [acronym=To Be Announced]TBA[/acronym] | TBA |
| [color=red]red[/color] | red |
| [color=#999999]#999999[/color] | #999999 |
| [code]<p>[/code] | <p> |
[list] [*]one [*]two [*]three [/list] | |
| [wikipedia]Wikipedia[/wikipedia] | Wikipedia |
| [google]Google[/google] | Google |
|
|