BB codes

  • [B], [I], [U], [S] - بولڈ، اٹالک، انڈر لائن اور سٹرائیک تھرو

    منتخب کردہ عبارت کو بولڈ، اٹالک، انڈر لائن یا سٹرائیک تھرو کرتا ہے۔
    مثال:
    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.
    آؤٹ پٹ:
    This is bold text.
    This is italic text.
    This is underlined text.
    This is struck-through text.
  • [COLOR=رنگ], [FONT=فونٹ کا نام], [SIZE=سائز] - Text Color, Font, and Size

    منتخب کردہ عبارت کارنگ، فونٹ یا سائز تبدیل کرتا ہے
    مثال:
    This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
    This is [FONT=Courier New]Courier New[/FONT] text.
    This is [SIZE=1]small[/SIZE] and [SIZE=7]big[/SIZE] text.
    آؤٹ پٹ:
    This is red and blue text.
    This is Courier New text.
    This is small and big text.
  • [URL], [EMAIL] - مربوط کرنا

    منتخب کردہ عبارت کو بطور ہائپر لنک دکھاتا ہے۔
    مثال:
    [URL]https://www.example.com[/URL]
    [EMAIL]example@example.com[/EMAIL]
    آؤٹ پٹ:
  • [URL=link], [EMAIL=address] - ربط تشکیل دینا

    منتخب کردہ عبارت کو مخصوص ویب سائٹ کے ربط میں تبدیل کرتا ہے۔
    مثال:
    [URL=https://www.example.com]Go to example.com[/URL]
    [EMAIL=example@example.com]Email me[/EMAIL]
    آؤٹ پٹ:
  • [USER=ID] - Profile Linking

    Links to a user's profile. This is generally inserted automatically when mentioning a user.
    مثال:
    [USER=1]User name[/USER]
    آؤٹ پٹ:
  • [IMG] - تصویر

    فراہم کردہ ربط پر موجود تصویر کو ظاہر کرتا ہے
    مثال:
    [IMG]https://hawalajat.amuslim.org/myimages/my-logo.png[/IMG]
    آؤٹ پٹ:
  • [MEDIA=site] - ایمبیڈ کردہ میڈیا

    آپ کے پیغام میں منظور شدہ سائٹس سے میڈیا کو شامل کرتا ہے۔ اس کے لیے میڈیا بٹن کا استعمال بہتر رہے گا۔
    منظور کردہ سائٹس: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram, Liveleak, Metacafe, PDF JS, Pinterest, Reddit, SoundCloud, Spotify, Tumblr, Twitch, Twitter, Vimeo, YouTube
    مثال:
    [MEDIA=youtube]oHg5SJYRHA0[/MEDIA]
    آؤٹ پٹ:
    یہاں ایمبڈ کردہ یوٹیوب پلئیر ظاہر ہوگا
  • [LIST] - لسٹ

    نشان دار، یا نمبر والی لسٹ دکھاتا ہے
    مثال:
    [LIST]
    [*]Bullet 1
    [*]Bullet 2
    [/LIST]
    [LIST=1]
    [*]Entry 1
    [*]Entry 2
    [/LIST]
    آؤٹ پٹ:
    • Bullet 1
    • Bullet 2
    1. Entry 1
    2. Entry 2
  • [LEFT], [CENTER], [RIGHT] - عبارت کی الائنمنٹ

    ریپ کی گئی عبارت کی الائنمنٹ تبدیل کرتا ہے
    مثال:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    آؤٹ پٹ:
    Left-aligned​
    Center-aligned​
    Right-aligned​
  • [QUOTE] - اقتباس کردہ عبارت

    کسی اور ماخذ کی عبارت کا اقتباس لیتا ہے۔ اس میں آپ اصل مصنف کا نام بھی شامل کر سکتے ہیں۔
    مثال:
    [QUOTE]Quoted text[/QUOTE]
    [QUOTE=A person]Something they said[/QUOTE]
    آؤٹ پٹ:
  • [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]
    آؤٹ پٹ:
    Simple spoiler
    Spoiler with a title
  • [ISPOILER] - Inline text containing spoilers

    Allows you to display text inline among normal content which hides text that may contain spoilers and must be clicked by the viewer to be seen.
    مثال:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    آؤٹ پٹ:
    You have to click the following word to see the content.
  • [CODE], [PHP], [HTML] - پروگرامنگ کوڈ ڈسپلے

    مختلف پروگرامنگ لینگویج کا کوڈ ظاہر کرتا ہے۔ جہاں ممکن ہو، وہاں سنٹیکس ہائی لائٹنگ بھی فراہم کرتا ہے۔
    مثال:
    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]
    آؤٹ پٹ:
    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 blocks [ICODE]are a convenient way[/ICODE] of displaying code inline.
    آؤٹ پٹ:
    Inline code blocks are a convenient way of displaying code inline.
  • [INDENT] - ٹیکسٹ انڈنٹ

    منتخب کردہ عبارت کو انڈٹ کرتا ہے۔ عبارت کو ایک سے زائد مرتبہ انڈنٹ کرنا ممکن ہے۔
    مثال:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    آؤٹ پٹ:
    Regular text
    Indented text​
    More indented​
  • [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]
    آؤٹ پٹ:
    Header 1Header 2
    Content 1Content 2
  • [PLAIN] - سادہ ٹیکسٹ

    منتخب کردہ عبارت میں بی بی کوڈ کو غیر فعال کرتا ہے۔
    مثال:
    [PLAIN]یہ [B]بولڈ ٹیکسٹ[/B] نہیں ہے.[/PLAIN]
    آؤٹ پٹ:
    یہ [B]بولڈ ٹیکسٹ[/B] نہیں ہے.
  • [ATTACH] - اٹیچمنٹ پیغام میں شامل کریں

    مخصوص مقام پر اٹیچمنٹ شامل کرتا ہے۔ اگر اٹیچمنٹ ایک تصویر ہے تو اس تھمب نیل یا فل سائز ورژن شامل کیا جائے گا۔ اس کے لیے عموما متعلقہ بٹن کلک کرنے کی ضرورت پیش آئے گی۔
    مثال:
    تھمب‌‌نیل: [ATTACH]123[/ATTACH]
    مکمل سائز: [ATTACH=full]123[/ATTACH]
    آؤٹ پٹ:
    منسکلات یہاں ظاہر ہوں گی
  • [IFRAMEARCHIVEORG] - Archive.org Iframe

    To add pdf file from archive.org
    مثال:
    [MEDIA=myarchiveorg]your-book-archive-org-id[/MEDIA]
    آؤٹ پٹ:
  • [MYARABIC] - Arabic Text

    add arabic text and formatting
    مثال:
    [myarabic] arabic text [/myarabic]
    آؤٹ پٹ:
    arabic text
  • [QUTBIPDF] - Qutbi PDF

    Embedd Qutbi PDFs here
    مثال:
    [qutbipdf]complete pocket book/مکمل تبلیغی پاکٹ بک[/qutbipdf]
    آؤٹ پٹ:
Top Bottom