[B], [I], [U], [S] - Negrita, itálica, subrayado y tachado
Pone el texto seleccionado en negrita, itálica, subrayado o tachado.
Ejemplo:
Esto es texto en [B]negrita[/B].
Esto es texto en [I]itálica[/I].
Esto es texto [U]subrayado[/U].
Esto es texto [S]tachado[/S].
Salida:
Esto es texto en negrita.
Esto es texto en itálica.
Esto es texto subrayado.
Esto es texto tachado.
[COLOR=color], [FONT=nombre], [SIZE=tamaño] - Color del texto, fuente y tamaño
Cambia el color, la fuente o el tamaño del texto seleccionado.
Ejemplo:
Esto es texto [COLOR=red]rojo[/COLOR] y [COLOR=#0000cc]azul[/COLOR].
Esto es texto [FONT=Courier New]Courier New[/FONT].
Esto es texto [SIZE=1]pequeño[/SIZE] y [SIZE=7]grande[/SIZE].
Salida:
Esto es texto rojo y azul.
Esto es texto Courier New.
Esto es texto pequeño y grande.
[URL], [EMAIL] - Enlazando
Crea un enlace usando el texto seleccionado como objetivo.
Oculta el texto contenido en los spoilers de modo que debe hacerse clic para poder verlo.
Ejemplo:
[SPOILER]Simple spoiler[/SPOILER]
[SPOILER=Título del Spoiler]Spoiler con título[/SPOILER]
Salida:
Simple spoiler
Spoiler con título
[ISPOILER] - Texto en línea que contiene spoilers
Le permite mostrar texto en línea entre el contenido normal que oculta el texto que puede contener spoilers y que el espectador debe hacer clic en él para poder verlo.
Ejemplo:
Tienes que hacer clic en el siguiente[ISPOILER]palabra[/ISPOILER] para ver el contenido
Salida:
Tienes que hacer clic en el siguientepalabra para ver el contenido
[CODE] - Muestra código de programación
Muestra el texto de varios idiomas de programación, destacando la sintaxis cuando es posible.
Marks text as a structured heading to facilitate machine readability.
Ejemplo:
[HEADING=1]Major heading[/HEADING]
This text comes under a major heading, used to separate the primary sections of an article.
[HEADING=2]Minor heading[/HEADING]
When you need to subdivide the primary sections of an article, use a level 2 minor heading.
[HEADING=3]Subheading[/HEADING]
If you require additional subdivision, you may drop to level 3.
Salida:
Major heading
This text comes under a major heading, used to separate the primary sections of an article.
Minor heading
When you need to subdivide the primary sections of an article, use a level 2 minor heading.
Subheading
If you require additional subdivision, you may drop to level 3.
[PLAIN] - Texto plano
Desactiva la traducción del código BB en el texto seleccionado.
Ejemplo:
[PLAIN]Esto no es texto [B]en negrita[/B].[/PLAIN]
Salida:
Esto no es texto [B]en negrita[/B].
[ATTACH] - Inserción de adjuntos
Inserta un archivo adjunto en el punto indicado. Se insertará una miniatura o la versión a tamaño completo si el archivo adjunto es una imagen. Suele insertarse pulsando en el botón correspondiente
- Only registered users who are registered not earlier than 5 days ago are displayed.
[GALLERY=option]
- Gallery embed
BB code for displaying gallery media items and albums.
Ejemplo:
[GALLERY=media, X]Gallery BB Code[/GALLERY]
Salida:
[GALLERY=media, X]Gallery BB Code[/GALLERY]
[GROUPS=option]
- For user groups
The tag hides content from people who are not members of X,Y,Z user groups.
Ejemplo:
[GROUPS=2]Hello World![/GROUPS] - Displayed only for group members with ID 2.
Salida:
El contenido oculto solo puede ser visto por el usuario del grupo: Registered
- Displayed only for group members with ID 2.
[HIDE]
·
[HIDE=option]
- For registered users only
Tag [HIDE] is used for hidden content. If [HIDE=(condition)] is specified, the condition will be applied to the hidden content. Note: After the = sign, you must enclose the conditions in parentheses to indicate the start and end of condition processing. Inside, you can use any condition grouping.
Allowed expressions (tags):
posts: Number of user posts.
likes: User reaction count.
reactions: User reaction count (same as likes).
trophies: Number of user trophies.
days: Number of days since user registration.
isMemberOf(id): User group, for multiple groups you can use comma-separated values.
username: User's username.
user_id: User's identifier.
user_state: User's state.
is_staff: Flag indicating whether the user is a staff member.
is_admin: Flag indicating whether the user is an administrator.
is_moderator: Flag indicating whether the user is a moderator.
Allowed operators:
Arithmetic operators:
Arithmetic operators are used for performing mathematical calculations:
+
-
*
/
% (modulus)
** (exponentiation)
Comparison operators:
Comparison operators are used for comparing values and returning a boolean result:
== (equal to)
=== (strictly equal to)
!= (not equal to)
!== (strictly not equal to)
< (less than)
> (greater than)
<= (less than or equal to)
>= (greater than or equal to)
Logical operators:
Logical operators are used for performing logical operations and returning a boolean result:
and or && (logical AND)
or or || (logical OR)
not or ! (logical NOT)
Bitwise operators:
Bitwise operators are performed on binary representations of numbers:
& (bitwise AND)
| (bitwise OR)
^ (bitwise XOR)
String operators:
The ~ operator is used for string concatenation:
~ (string concatenation)
Array operators:
Array operators are used for checking element membership in an array:
in (element present in array)
not in (element not present in array)
Numeric operators:
The .. operator is used to create a range of numbers:
.. (number range)
Ternary operator:
The ?: operator is used to perform conditional operations in a single line:
?: (ternary operator)
Ejemplo:
[HIDE]Hello World![/HIDE] - only registered users see the hidden text
[HIDE=(posts > 1 or likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 OR the number of likes is greater than 1.
[HIDE=(posts > 1 and likes > 1)]Hello world![/HIDE] - The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 AND the number of likes is greater than 1.
[HIDE=(days > 1 or user_state == "valid")]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the number of days since user registration is greater than 1 OR the user state is "valid".
[HIDE=(isMemberOf(2) or trophies >= 0)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a member of group 2 OR the number of user trophies is greater than or equal to 0.
[HIDE=(is_staff)]Hello World![/HIDE] - The hidden text "Hello World!" will be displayed if the user is a staff member.
Salida:
¡El contenido oculto está disponible para usuarios registrados!
- only registered users see the hidden text
message > 1 (0) or like > 1 (0)
- The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 OR the number of likes is greater than 1.
message > 1 (0) and like > 1 (0)
- The hidden text "Hello world!" will be displayed if the number of user posts is greater than 1 AND the number of likes is greater than 1.
day > 1 (0) or Estado del usuario is "valid" (valid)
Hello World!
- The hidden text "Hello World!" will be displayed if the number of days since user registration is greater than 1 OR the user state is "valid".
Member group(s): Registered or points >= 0 (0)
Hello World!
- The hidden text "Hello World!" will be displayed if the user is a member of group 2 OR the number of user trophies is greater than or equal to 0.
Miembro del equipo
- The hidden text "Hello World!" will be displayed if the user is a staff member.
[LIKES=option]
- Number of likes
Number of likes on the forum, which the user needs to be able to view
Ejemplo:
[LIKES=5]Hello World![/LIKES] - Displayed only registered users whose number of reactions on the forum is greater than or equal to 5.
- This tag hides the text until the user clicks the <b>Like button</b> in the message.
[TROPHIES=option]
- Number of trophies
Number of trophies on the forum, which the user needs to be able to view
Ejemplo:
[TROPHIES=5]Hello World![/TROPHIES] - It is displayed only to registered users, the number of points for trophies on the forum which is greater than or equal to 5.