BBcode components styles
Documentation and examples for BBcode components available for members.
Although these components are accessible to everyone, please do not abuse them as you risk having this right taken away.
Alert message
Information: Alert message from admin and moderator.
Parameter: none
Example Usage:
Code: Select all
[mod=Raddeck]Please post in the right section...[/mod]
Top of the page
Embed video
Information: Embed any video site url.
Parameter: video url
Example Usage:
Code: Select all
[bbvideo]https://www.youtube.com/watch?v=d1ZnM7CH-v4[/bbvideo]
NFO
Information: For showing ascii art. Don't abuse using it or your posts will be deleted.
Parameter: https://patorjk.com/software/taag/
Example Usage:
Code: Select all
[nfo]your ascii code here[/nfo]
( )\ ) ( ( ) (()/( ) )\ ) )\ ) ( ( /( /(_)( /( (()/((()/( ))\ ( )\()) (_)) )(_)) ((_))((_)/((_))\((_)\ | _ ((_)_ _| | _| (_)) ((_| |(_) | / _` / _` / _` / -_/ _|| / / |_|_\__,_\__,_\__,_\___\__||_\_\
Top of the page
Off topic
Information: To highlight that the post or subject is off topic.
Parameter: none
Example Usage:
Code: Select all
[offtopic]Please post in the right section...[/offtopic]
Progress bar
Information: To add a progress bar in a post.
Parameter: Any number between 1-100
Example Usage:
Code: Select all
[progress]20[/progress]
With color:
Code: Select all
[progressC=blue]75[/progressC]
Quoting and outputting fixed-width text
There are 14 ways you can quote text, with a reference or without.
This method allows you to quote with a reference to a person or whatever else you choose to put! For example to quote a piece of text Mr. Blobby wrote you would enter:
Code: Select all
[quote="Mr. Blobby"]The text Mr. Blobby wrote would go here[/quote]
The second method allows you to blindly quote something. When you view the message it will simply show the text within a quotation block.Mr. Blobby wrote:The text Mr. Blobby wrote would go here
Code: Select all
[quote]The text Mr. Blobby wrote would go here[/quote]
The 12 other way are shown here: https://lifeplay.site/viewtopic.php?p=214#p214The text Mr. Blobby wrote would go here
Top of the page
Soundcloud
Information: Hides the text in a Spoiler tag.
Parameter: music url
Example Usage:
Code: Select all
[soundcloud]https://soundcloud.com/oomph-official/truemmerkinder[/soundcloud]
Table ASCII-style
Information: Create tables using any of these ASCII-style formats. User Guide.
Parameter: None
Example Usage:
Code: Select all
Simple table:
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
Compact table:
The outer pipes and spaces around pipes are optional.
Header 1|Header 2
-|-
Cell 1|Cell 2
Text alignment:
| Left | Center | Right |
|:-----|:------:|------:|
| x | x | x |
Simple table:
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
The outer pipes and spaces around pipes are optional.
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Left | Center | Right |
---|---|---|
x | x | x |
OR this way
Like in html, by using combination of Table - tr and td or tdb
Example Usage:
Code: Select all
[tables]
[tr]
[td]Title 1[/td]
[td]Title 2[/td]
[/tr]
[tr]
[td]text 1[/td]
[tdb=red]text 2[/tdb]
[/tr]
[/tables]
Title 1 | Title 2 |
text 1 | text 2 |
Top of the page