Formatting codes are enclosed between square angled brackets. Everything in between [ and ] will be interpreted as a formatting tag.
If you want to use an opening right angled bracket as regular text, type a double bracket, like so:
Some regular text [b]This is bold text[/b] To use bold text you have to use [[b] and [[/b] |
Some regular text This is bold text To use bold text you have to use [b] and [/b] |
Bold | ||||||||||||||||||
Example: | [b]bold text[/b] | |||||||||||||||||
Result: | bold text | |||||||||||||||||
Italic | ||||||||||||||||||
Example: | [i]italic text[/i] | |||||||||||||||||
Result: | italic text | |||||||||||||||||
Underline | ||||||||||||||||||
Example: | [u]underlined text[/u] | |||||||||||||||||
Result: | underlined text | |||||||||||||||||
Teletype | ||||||||||||||||||
Example: | [tt]teletype[/tt] | |||||||||||||||||
Result: | teletype | |||||||||||||||||
Colored | ||||||||||||||||||
Example: |
[color=red]red text[/color] [colour=#00CC00]green text[/colour] |
|||||||||||||||||
Result: |
red text green text |
|||||||||||||||||
Links | ||||||||||||||||||
Example: | [link]www.tiwaz.org[/link] [url]www.tiwaz.org[/url] [link=www.tiwaz.org]Tiwaz's Emissaries[/link] |
|||||||||||||||||
Result: | www.tiwaz.org www.tiwaz.org Tiwaz's Emissaries | |||||||||||||||||
Email addresses | ||||||||||||||||||
Example: | [mail]webmaster@tiwaz.org[/mail] [email]webmaster@tiwaz.org[/email] | |||||||||||||||||
Result: | webmaster@tiwaz.org | |||||||||||||||||
Images | ||||||||||||||||||
Example: | [img]www.tiwaz.org/forum/img/thread_locked.gif[/img] | |||||||||||||||||
Result: | ![]() | |||||||||||||||||
Quotes | ||||||||||||||||||
Example: | [quote]Quoted text[/quote] | |||||||||||||||||
Result: | "Quoted text"
| |||||||||||||||||
Lists | ||||||||||||||||||
| ||||||||||||||||||
Alignment | ||||||||||||||||||
Example: | [center]centered[/center] [right]right aligned[/right] |
|||||||||||||||||
Code | ||||||||||||||||||
Example: |
[code] int main() { cout << "Hello World!" << endl; return 0; } [/code] |
|||||||||||||||||
Result: |
int main() {
cout << "Hello World!" << endl; return 0; } |