Vous utilisez un navigateur obsolète. Il se peut qu'il n'affiche pas correctement ce site ou d'autres. Vous devez le mettre à niveau ou utiliser un navigateur alternatif.
[B], [I], [U], [S] - Gras, italique, souligné et barré
Changer le texte de l'enveloppe en gras, italique, souligné ou barré
Exemple:
C'est du texte [B]gras[/B].
C'est un texte [I]italique[/I].
C'est un texte [U]souligné[/U].
C'est un texte [S]barré[/S].
Résultat:
C'est du texte gras.
C'est un texte italique.
C'est un texte souligné.
C'est un texte barré.
[COLOR=couleur], [FONT=nom], [SIZE=taille] - Couleur du texte, police, et taille
Changer la couleur, la police ou la taille du texte enveloppé
Exemple:
C'est un texte [COLOR=red]Rouge[/COLOR] et [COLOR=#0000cc]bleu[/COLOR].
C'est la police [FONT=Courier New]Courier New[/FONT].
C'est le texte [SIZE=1]Petit[/SIZE] et [SIZE=7]Grand[/SIZE].
Résultat:
C'est un texte Rouge et bleu.
C'est la police Courier New.
C'est le texte Petit et Grand.
[URL], [EMAIL] - Liaison
Créer un lien en utilisant le texte enveloppé comme cible.
Masque un texte par des spoilers de sorte qu'il doit être cliqué pour être affiché au lecteur.
Exemple:
[SPOILER]Simple spoiler[/SPOILER]
[SPOILER=Titre du spoiler]Spoiler avec un titre[/SPOILER]
Résultat:
Simple spoiler
Spoiler avec un titre
[ISPOILER] - Texte en ligne contenant des spoilers
Vous permet d'afficher du texte en ligne dans le contenu normal, ce qui masque le texte pouvant contenir des spoilers et sur lequel le visualiseur doit cliquer pour être vu.
Exemple:
Vous devez cliquer sur le [ISPOILER]mot[/ISPOILER] pour voir le contenu.
Résultat:
Vous devez cliquer sur le mot pour voir le contenu.
[CODE] - Affichage du code de programmation
Afficher le texte dans l'un des langages de programmation, en mettant la syntaxe en évidence quand c'est possible.
Marque le texte comme un en-tête structuré pour faciliter la lecture.
Exemple:
[HEADING=1]Titre principal[/HEADING]
Ce texte s'inscrit dans une rubrique principale, utilisée pour séparer les sections principales d'un article.
[HEADING=2]Titre mineur[/HEADING]
Lorsque vous devez subdiviser les sections principales d'un article, utilisez un titre mineur de niveau 2.
[HEADING=3]Sous-titre[/HEADING]
Si vous avez besoin d'une subdivision supplémentaire, vous pouvez passer au niveau 3.
Résultat:
Titre principal
Ce texte s'inscrit dans une rubrique principale, utilisée pour séparer les sections principales d'un article.
Titre mineur
Lorsque vous devez subdiviser les sections principales d'un article, utilisez un titre mineur de niveau 2.
Sous-titre
Si vous avez besoin d'une subdivision supplémentaire, vous pouvez passer au niveau 3.
[PLAIN] - Texte brut
Désactiver la traduction du BB Code
Exemple:
[PLAIN]Ceci n'est pas un texte [B]gras[/B].[/PLAIN]
Résultat:
Ceci n'est pas un texte [B]gras[/B].
[ATTACH] - Insertion de la pièce jointe
Insérer une pièce jointe au point spécifié. Si la pièce jointe est une image, une miniature ou une version complète sera insérée. Ceci sera généralement inséré en cliquant sur le bouton approprié.
- Only registered users who are registered not earlier than 5 days ago are displayed.
[GROUPS=option]
- For user groups
The tag hides content from people who are not members of X,Y,Z user groups.
Exemple:
[GROUPS=2]Hello World![/GROUPS] - Displayed only for group members with ID 2.
Résultat:
Content of this hidden block can only be seen by members of: 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)
Exemple:
[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.
Résultat:
You must click 'Like' before you can see the hidden data contained here
- only registered users see the hidden text
You must click 'Like' before you can see the hidden data contained here
- 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.
You must click 'Like' before you can see the hidden data contained here
- 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.
You must click 'Like' before you can see the hidden data contained here
- 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".
You must click 'Like' before you can see the hidden data contained here
- 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.
You must click 'Like' before you can see the hidden data contained here
- The hidden text "Hello World!" will be displayed if the user is a staff member.
[THANKS]
- Click "Like"
This tag hides the text until the user clicks the Like button in the message.
Exemple:
[THANKS]Hello World![/THANKS] - This tag hides the text until the user clicks the Like button in the message.