Прави увития текст удебелен, курсив, подчертан или зачертан.
Example:
Това е [B]удебелен[/B] текст.
Това е [I]курсив[/I] текст.
Това е [U]подчертан[/U] текст.
Това е [S]зачеркнат[/S] текст.
Output:
Това е удебелен текст.
Това е курсив текст.
Това е подчертан текст.
Това е зачеркнат текст.
[COLOR=color], [FONT=name], [SIZE=size] - Цвят, шрифт и размер на текста
Променя цвета, шрифта или размера на увития текст.
Example:
Това е [COLOR=red]червен[/COLOR] и [COLOR=#0000cc]син[/COLOR] текст.
Това е текст [FONT=Courier New]Courier New[/FONT].
Това е [SIZE=1]малък[/SIZE] и [SIZE=7]голям[/SIZE] текст.
Output:
Това е червен и син текст.
Това е текст Courier New.
Това е малък и голям текст.
[URL], [EMAIL] - Свързване
Създава връзка, използвайки увития текст като цел.
Скрива текст, който може да съдържа спойлери, така че зрителят трябва да щракне върху него, за да бъде видян.
Example:
[SPOILER]Прост спойлер[/SPOILER]
[SPOILER=Заглавие на спойлер]Спойлер със заглавие[/SPOILER]
Output:
Прост спойлер
Спойлер със заглавие
[ISPOILER] - Вграден текст, съдържащ спойлери
Позволява ви да показвате вграден текст сред нормално съдържание, което скрива текст, който може да съдържа спойлери и трябва да бъде щракнат от зрителя, за да бъде видян.
Example:
Трябва да щракнете върху следната [ISPOILER]дума[/ISPOILER], за да видите съдържанието.
Output:
Трябва да щракнете върху следната дума, за да видите съдържанието.
[CODE] - Показване на програмен код
Показва текст на един от няколко езика за програмиране, като подчертава синтаксиса, където е възможно.
Маркира текста като структурирано заглавие, за да се улесни машинното четене.
Example:
[HEADING=1]Основно заглавие[/HEADING]
Този текст е под основно заглавие, използвано за разделяне на основните раздели на статия.
[HEADING=2]Незначително заглавие[/HEADING]
Когато трябва да разделите основните раздели на статия, използвайте второстепенно заглавие от ниво 2.
[HEADING=3]Подзаглавие[/HEADING]
Ако имате нужда от допълнително подразделение, може да падне до ниво 3.
Output:
Основно заглавие
Този текст е под основно заглавие, използвано за разделяне на основните раздели на статия.
Незначително заглавие
Когато трябва да разделите основните раздели на статия, използвайте второстепенно заглавие от ниво 2.
Подзаглавие
Ако имате нужда от допълнително подразделение, може да падне до ниво 3.
[PLAIN] - Обикновен текст
Деактивиран превод на BBcode върху увития текст.
Example:
[PLAIN]Това не е [B]удебелен[/B] текст.[/PLAIN]
Output:
Това не е [B]удебелен[/B] текст.
[ATTACH] - Вмъкване на прикачен файл
Вмъква прикачен файл в посочената точка. Ако прикаченият файл е изображение, ще бъде вмъкната миниатюра или версия в пълен размер. Това обикновено се вмъква чрез щракване върху съответния бутон.
Example:
Thumbnail: [ATTACH]123[/ATTACH]
Full size: [ATTACH=full]123[/ATTACH]
Output:
Съдържанието на прикачените файлове ще се появи тук.
[CLUB]
- For club members
The information inside the code is displayed only to members of the club.
Example:
[CLUB]Hello World![/CLUB] - Hidden text for club members
- 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.
Example:
[GROUPS=2]Hello World![/GROUPS] - Displayed only for group members with ID 2.
Output:
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)
Example:
[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.
Output:
View hidden content is available for registered users!
- 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 User state 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.
Член на екипа
- The hidden text "Hello World!" will be displayed if the user is a staff member.
[HIDEUSERAGE=option]
- Hide Content by User Age
This BB code hides content from users who have not reached a specified age.
Example:
[hideuserage=18]This content is only visible to users who are at least 18 years old.[/hideuserage]
- 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
Example:
[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.
Този форум използва бисквитки, за да ви помогне да персонализирате съдържанието, да подобри вашето изживяване и да останете в профила си, ако сте се регистрирали.
Продължавайки да използвате този форум, вие се съгласявате с нашата употреба на бисквитки.