BB code is a set of tags based on the HTML language that you may already be familiar with.
They allow you to add formatting to your messages in the same way as HTML does,
but have a simpler syntax and will never break the layout of the pages you are viewing.
The ability to use BB code is set on a forum-by-forum basis by the administrator,
so you should check the forum rules when you post a new message.
Below is a list of the BB code tags you can use to format your messages.
The [list] tag allows you to create simple, bulleted lists without specifying an option. Within the value portion, each bullet is denoted by the [*] tag.
Usage
[list]value[/list]
Example Usage
[list] [*]list item 1 [*]list item 2 [/list]
Example Output
list item 1
list item 2
Advanced Lists
The [list] tag allows you to create advanced lists by specifying an option. The option should have a value of 1 (for a numbered list) or A (for an alphabetic with capital letters list) or a (for an alphabetic with lowercase letters list) or I (for a numbered with capital Roman numeral list) or i (for a numbered with small Roman numeral list).
Usage
[list=Option]value[/list]
Example Usage
[list=1] [*]list item 1 [*]list item 2 [/list]
[list=a] [*]list item 1 [*]list item 2 [/list]
Example Output
list item 1
list item 2
list item 1
list item 2
Images
The [img] tag allows you to embed images within your posts. You can also combine this tag with the [url] tag to make images become links.
The [php] tag performs the same function as the [code] tag, but also adds syntax highlighting for PHP code. Although it is designed for PHP, it may correctly highlight some other C-like languages.
[quote]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe]Lorem ipsum dolor sit amet[/quote]
[quote=John Doe;6329977]Lorem ipsum dolor sit amet[/quote]
Example Output
Quote:
Lorem ipsum dolor sit amet
Quote:
Originally Posted by John Doe
Lorem ipsum dolor sit amet
Quote:
Originally Posted by John Doe
Lorem ipsum dolor sit amet
Stop BB Code Parsing
The [noparse] tag allows you to stop the parsing of BB code.
Usage
[noparse][b]value[/b][/noparse]
Example Usage
[noparse][b]Lorem ipsum dolor sit amet[/b][/noparse]
Example Output
[b]Lorem ipsum dolor sit amet[/b]
Attachment
The [attach] tag allows you to display an attachment in your post rather than at the bottom. It will only display attachments that belong to the post in which it is utilized.
Usage
[attach]attachmentid[/attach]
Example Usage
[attach]12345[/attach]
Example Output
Abbreviation
Indicates an abbreviated form, like "Inc.", "etc.".
Takes User ID and shows scrollable list of recently listened tracks
Usage
[lastfm]value[/lastfm]
Example Usage
.
Example Output
.
legend
The legend element defines a caption for a fieldset.
Usage
[legend]value[/legend]
Example Usage
Example Output
Horizontal rule
Creates a line with the length of the paramater specified (in the example, it's 300 pixels). May take pixel values or percentages.
Usage
[line]value[/line]
Example Usage
[line]300[/line]
Example Output
Move across screen
Usage
[move]value[/move]
Example Usage
[move]this moves across the screen[/move]
Example Output
Overline
Usage
[overline]value[/overline]
Example Usage
√[overline]2[/overline]
Example Output
√2
Preserve spacing
Usage
[pre]value[/pre]
Example Usage
[pre] Spacing is preserved[/pre] Not this spacing
Example Output
Spacing is preserved
Not this spacing
Right-to-left text
The dir attribute overrides the default text direction.
Usage
[rtl]value[/rtl]
Example Usage
[rtl]This text is right to left[/rtl]
Example Output
This text is right to left
Strikethrough
Strikes out typed text.
Usage
[s]value[/s]
Example Usage
[s]strikethrough[/s]
Example Output
strikethrough
Source
Creates a box that hides text until a button is clicked.
Usage
[source]value[/source]
Example Usage
[source]This is a Helios Article[/source]
Example Output
Click to view content:
This is a Helios Article
Spoiler block
Creates a box that hides text until a button is clicked.
Usage
[spoiler]value[/spoiler]
Example Usage
[spoiler]The butler did it![/spoiler]
Example Output
Spoiler Alert, click show to read:
The butler did it!
Spoiler Block (with custom title)
Usage
[spoiler=Option]value[/spoiler]
Example Usage
[Spoiler=Example]This text is hidden if you don't click Show[/spoiler]
Example Output
Spoiler for Example:
This text is hidden if you don't click Show
Subscript
Usage
[sub]value[/sub]
Example Usage
H[sub]2[/sub]O
Example Output
H2O
Superscript
Usage
[sup]value[/sup]
Example Usage
x[sup]4[/sup] + 1 = 0
Example Output
x4 + 1 = 0
Table
Use this to wrap around table rows and cells. Make sure that everything is nested correctly! Every [tr] must be immediately inside a [table], and every [td] or [th] must be immediately inside a [tr].
[table]Hello[/table] = no good
[table][td]Hello[/td][/table] = no good
[table][tr]Hello[/tr][/table] = no good
[table][tr][td]Hello[/td][/tr][/table] = good
Usage
[table]value[/table]
Example Usage
Example Output
Table data
This adds a table data cell inside a table row.
Usage
[td]value[/td]
Example Usage
Example Output
Table heading
This adds a table heading inside a table row.
Usage
[th]value[/th]
Example Usage
Example Output
Table row
This adds a table row.
Usage
[tr]value[/tr]
Example Usage
Example Output
Monospace ("teletype") font
Usage
[tt]value[/tt]
Example Usage
[tt]This looks like it came from a typewriter[/tt]