. . .

BB کدها

  • [B], [I], [U], [S] - bold, کج, زیر خط دار, Struck-through

    Basic text formatting for the wrapped text.
    مثال:
    This is [B]bold[/B] text.
    This is [I]italic[/I] text.
    This is [U]underlined[/U] text.
    This is [S]struck-through[/S] text.
    Output:
    This is bold text.
    This is italic text.
    This is underlined text.
    This is struck-through text.
  • [COLOR=color], [BGCOLOR=color], [FONT=font], [SIZE=size] - رنگ پس‌زمینه, رنگ متن, فونت, اندازه

    Advanced text formatting options for wrapped text.
    مثال:
    This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
    This is [BGCOLOR=#FAA]red[/BGCOLOR] and [BGCOLOR=#AAF]blue[/BGCOLOR] highlighted text.
    This is [FONT=Courier New]Courier New[/FONT] text.
    This is [SIZE=1]small[/SIZE] and [SIZE=7]big[/SIZE] text.
    Output:
    This is red and blue text.
    This is red and blue highlighted text.
    This is Courier New text.
    This is small and big text.
  • [SUB], [SUP] - Subscript, Superscript

    Position wrapped text.
    مثال:
    This is [SUB]subscript[/SUB] text.
    This is [SUP]superscript[/SUP] text.
    Output:
    This is subscript text.
    This is superscript text.
  • [URL], [EMAIL] - Linking

    Creates a link using the wrapped text as the target.
    مثال:
    [URL]https://www.example.com[/URL]
    [EMAIL][email protected][/EMAIL]
    Output:
  • [URL=link], [EMAIL=address] - Linking (Advanced)

    Links the wrapped text to the specified web page or email address.
    مثال:
    [URL=https://www.example.com]Go to example.com[/URL]
    [[email protected]]Email me[/EMAIL]
    Output:
  • [USER=ID] - Profile Linking

    Links to a user's profile. This is generally inserted automatically when mentioning a user.
    مثال:
    [USER=1]نام‌کاربری[/USER]
    Output:
  • [IMG] - Image

    Display an image, using the wrapped text as the URL.
    مثال:
    [IMG]https://romanik.ir/forums/data/assets/logo/romanik-icon-matadata-logo-512.png[/IMG]
    Output:
    romanik-icon-matadata-logo-512.png
  • [VIDEO] - Video

    Displays a video, using the wrapped text as the URL.
    مثال:
    [VIDEO]https://romanik.ir/forums/styles/editor-manager/missing-video.mp3[/VIDEO]

    [VIDEO='width:300']https://romanik.ir/forums/styles/editor-manager/missing-video.mp3[/VIDEO]
    Output:


  • [AUDIO] - صوتی

    Displays an audio player, using the wrapped text as URL.
    مثال:
    [AUDIO]https://romanik.ir/forums/styles/editor-manager/missing-audio.mp3[/AUDIO]
    Output:
  • [MEDIA=site] - Embedded Media

    Embeds media from approved sites into your message. It is recommended that you use the media button in the editor tool bar.
    سایت‌های تایید شده: aparat, Apple Music, Dailymotion, dalfak, Facebook, Flickr, Giphy, imdb, Imgur, Instagram, mihanvideo, namasha, Pinterest, Reddit, SoundCloud, Spotify, tamasha, TikTok, Tumblr, Twitch, Twitter, Vimeo, YouTube
    مثال:
    [MEDIA=youtube]oHg5SJYRHA0[/MEDIA]
    Output:
    An embedded YouTube player would appear here.
  • [LIST] - Lists

    Displays a bulleted or numbered list.
    مثال:
    [LIST]
    [*]Bullet 1
    [*]Bullet 2
    [/LIST]
    [LIST=1]
    [*]Entry 1
    [*]Entry 2
    [/LIST]
    Output:
    • Bullet 1
    • Bullet 2
    1. Entry 1
    2. Entry 2
  • [LEFT], [RIGHT], [CENTER], [JUSTIFY] - Text alignment

    Changes the alignment of the wrapped text.
    مثال:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    [JUSTIFY]This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.[/JUSTIFY]
    Output:
    Left-aligned​
    Center-aligned​
    Right-aligned​
    This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.​
  • [QUOTE] - Quoted text

    Displays text that has been quoted from another source. You may also attribute the name of the source.
    مثال:
    [QUOTE]Quoted text[/QUOTE]
    [QUOTE=A person]Something they said[/QUOTE]
    Output:
  • [SPOILER] - Text containing spoilers

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    مثال:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Spoiler Title]Spoiler with a title[/SPOILER]
    Output:
    Simple spoiler
    Spoiler with a title
  • [ISPOILER] - Inline text containing spoilers

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    مثال:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    Output:
    You have to click the following word to see the content.
  • [CODE] - Programming code display

    متن را به یکی از چندین زبان برنامه نویسی نمایش می دهد و دستورات را در صورت امکان برجسته می کند.
    مثال:
    General code:
    [CODE]General
    code[/CODE]

    Rich code:
    [CODE=rich][COLOR=red]Rich[/COLOR]
    code[/CODE]

    PHP code:
    [CODE=php]echo $hello . ' world';[/CODE]

    JS code:
    [CODE=javascript]var hello = 'world';[/CODE]
    Output:
    General code:
    کد:
    General
    code

    Rich code:
    Rich (BB code):
    Rich
    code

    PHP code:
    PHP:
    echo $hello . ' world';

    JS code:
    JavaScript:
    var hello = 'world';
  • [ICODE] - Inline programming code display

    Allows you to display code inline among normal post content. Syntax will not be highlighted.
    مثال:
    Inline code sections [ICODE]are a convenient way[/ICODE] of displaying code inline.

    Rich formatting within inline code sections [ICODE=rich]is [COLOR=red]also[/COLOR] [U]supported[/U][/ICODE].
    Output:
    Inline code sections are a convenient way of displaying code inline.

    Rich formatting within inline code sections is also supported.
  • [TABLE] - Tables

    Special markup to display tables in your content.
    مثال:
    [TABLE]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Output:
    Header 1Header 2
    Content 1Content 2
  • [TABLE=class] - Tables (Advanced)

    Advanced table styling.
    مثال:
    Option adds additional styling.
    [TABLE=noborder]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]

    Multiple styles can be combined.
    [TABLE=collapse,right,nobackground]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]

    [TABLE=collapse,center,alternate]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Output:
    Option adds additional styling.
    Header 1Header 2
    Content 1Content 2

    Multiple styles can be combined.
    Header 1Header 2
    Content 1Content 2

    Header 1Header 2
    Content 1Content 2
    Content 1Content 2
  • [HEADING=level] - Headings levels 1 to 3

    Marks text as a structured heading to facilitate machine readability.
    مثال:
    [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.
    Output:

    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.
  • [INDENT] - Text indent

    Indents the wrapped text. This can be nested for larger indentings.
    مثال:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    Output:
    Regular text
    Indented text​
    More indented​
  • [PLAIN] - متن ساده

    Disables BB code translation on the wrapped text.
    مثال:
    [PLAIN]This is not [B]bold[/B] text.[/PLAIN]
    Output:
    This is not [B]bold[/B] text.
  • [ATTACH] - Attachment insertion

    Inserts an attachment at the specified point. If the attachment is an image, a thumbnail or full size version will be inserted. This will generally be inserted by clicking the appropriate button.
    مثال:
    بندانگشتی: [ATTACH]123[/ATTACH]
    اندازه کامل: [ATTACH=full]123[/ATTACH]
    Output:
    The contents of the attachments would appear here.
  • [HIDE], [HIDEPOSTS], [HIDEREPLY], [HIDETHANKS], [HIDEREPLYTHANKS], [HIDEGROUP] - Hide content

    Hides wrapped text until certain conditions are fullfilled.
    مثال:
    [HIDE]Hides wrapped content.[/HIDE]

    [HIDEPOSTS]Hides until user reached number of posts.[/HIDEPOSTS]

    [HIDEREPLY]Hides content until viewer replied to thread.[/HIDEREPLY]

    [HIDETHANKS]Hides content until viewer reacted to content.[/HIDETHANKS]

    [HIDEREPLYTHANKS]Hides content until viewer replied to thread or reacted to content.[/HIDEREPLYTHANKS]

    [HIDEGROUP=administrator]Hides content for non-administrators.[/HIDEGROUP]
    Output:
    Hidden content
    You need to reply to this thread in order to see this content.
    Hidden content
    You need -1 more posts to view this content
    Hidden content
    You need to reply to this thread in order to see this content.
    Hidden content
    You need to react to this post in order to see this content.
    Hidden content
    You need to reply to this thread or react to this post in order to see this content.
    Hidden content
    You need to be in at least one of the following groups to see this content:
  • [AMR] - amr

    فرمت ضبط صدا : amr
    مثال:
    [amr]xxxxx.amr[/amr]
    Output:
    [amr]https://irsv.upmusics.com/99/Ata%20Radfar%20%E2%80%93%20Ashegh%20(128).amr[/amr]
  • [CHARGE=option] - Charge

    Charging users to view your content.
    مثال:
    [CHARGE=5]It costs 5 credits to see this text.[/CHARGE]
    Output:
    It costs 5 credits to see this text.
  • [EDIT] - ویرایش

    ویرایش
    مثال:
    [edit]النص الخاص بك هنا...[/edit]
    Output:
    النص الخاص بك هنا...
  • [HELP] - کمک

    کمک
    مثال:
    [help]النص الخاص بك هنا...[/help]
    Output:
    النص الخاص بك هنا...
  • [IMPORTANT] - مهم

    مهم
    مثال:
    [important]النص الخاص بك هنا...[/important]
    Output:
    النص الخاص بك هنا...
  • [INFO] - اطلاعات

    اطلاعات
    مثال:
    [info]النص الخاص بك هنا...[/info]
    Output:
    النص الخاص بك هنا...
  • [MUSIC] - پخش آنلاین آهنگ

    پخش موزیک و ویس در ارسالی ها
    مثال:
    [music]xxxxx.mp3[/music]
    Output:
    Audio Image

    پخش‌کننده موسیقی

    بارگیری

    0:00 0:00
  • [OFFTOPIC] - ممنوعیت

    ممنوعیت
    مثال:
    [offtopic]النص الخاص بك هنا...[/offtopic]
    Output:
    النص الخاص بك هنا...
  • [SUCCESS] - موفقیت

    موفقیت
    مثال:
    [success]النص الخاص بك هنا...[/success]
    Output:
    النص الخاص بك هنا...
  • [VIDEO] - پخش آنلاین ویدیو

    پخش آنلاین ویدئو با لینک مستقیم
    مثال:
    [video]xxxxx.mp4[/video]]
    Output:
    ]
  • [WARNING] - هشدار

    هشدار
    مثال:
    [warning]النص الخاص بك هنا...[/warning]
    Output:
    النص الخاص بك هنا...
بالا پایین