BB codes

  • [B], [I], [U], [S] - Bold, italics, underline, and strike-through

    Makes the wrapped text bold, italic, underlined, or struck-through.
    Example:
    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], [FONT=name], [SIZE=size] - Text Color, Font, and Size

    Changes the color, font, or size of the wrapped text.
    Example:
    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.
    Output:
    This is red and blue text.
    This is Courier New text.
    This is small and big text.
  • [URL], [EMAIL] - Linking

    Creates a link using the wrapped text as the target.
    Example:
    [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.
    Example:
    [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.
    Example:
    [USER=1]Username[/USER]
    Output:
  • [IMG] - Image

    Display an image, using the wrapped text as the URL.
    Example:
    [IMG]https://www.sevenforums.com/var(--xf-publicLogoUrl)[/IMG]
    Output:
    var(--xf-publicLogoUrl)
  • [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.
    Approved sites: Apple Music, Bluesky, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram, Pinterest, Reddit, SoundCloud, Spotify, TikTok, Tumblr, Twitch, X, Vimeo, YouTube
    Example:
    [MEDIA=youtube]kQ0Eo1UccEE[/MEDIA]
    Output:
    An embedded YouTube player would appear here.
  • [LIST] - Lists

    Displays a bulleted or numbered list.
    Example:
    [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], [CENTER], [RIGHT] - Text alignment

    Changes the alignment of the wrapped text.
    Example:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    Output:
    Left-aligned​
    Center-aligned​
    Right-aligned​
  • [QUOTE] - Quoted text

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

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    Example:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Spoiler Title]Spoiler with a title[/SPOILER]
    Output:
    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.
    Example:
    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

    Displays text in one of several programming languages, highlighting the syntax where possible.
    Example:
    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:
    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.
    Example:
    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.
  • [INDENT] - Text indent

    Indents the wrapped text. This can be nested for larger indentings.
    Example:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    Output:
    Regular text
    Indented text​
    More indented​
  • [TABLE] - Tables

    Special markup to display tables in your content.
    Example:
    [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
  • [HEADING=level] - Headings levels 1 to 3

    Marks text as a structured heading to facilitate machine readability.
    Example:
    [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.
  • [PLAIN] - Plain text

    Disables BB code translation on the wrapped text.
    Example:
    [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.
    Example:
    Thumbnail: [ATTACH]123[/ATTACH]
    Full size: [ATTACH=full]123[/ATTACH]
    Output:
    The contents of the attachments would appear here.
  • [FA] - Font Awesome

    custom_bb_code_desc.FA
    Example:
    [FA]far fa-check-square[/FA]
    Output:
    custom_bb_code_output.FA
  • [NOPARSE] - NoParse

    custom_bb_code_desc.NoParse
    Example:
    [noparse]www.tenforums.com[/noparse]
    Output:
    custom_bb_code_output.NoParse
  • [ANCHOR] - Anchor

    custom_bb_code_desc.anchor
    Example:
    [anchor]option1[/anchor]
    Output:
    custom_bb_code_output.anchor
  • [C] - InlineCode

    custom_bb_code_desc.c
    Example:
    When I run [c]dir *.*[/c] it produces unexpected results.
    Output:
    custom_bb_code_output.c
  • [CLINE=option] - cline

    custom_bb_code_desc.cline
    Example:
    [cline=red]text here[/cline]
    Output:
    custom_bb_code_output.cline
  • [CONTENT] - content

    custom_bb_code_desc.content
    Example:
    [content]some[/content]
    Output:
    custom_bb_code_output.content
  • [DEG] - Degree

    custom_bb_code_desc.deg
    Example:
    [deg]79[/deg]F
    Output:
    custom_bb_code_output.deg
  • [DEL] - Strike

    custom_bb_code_desc.del
    Example:
    [del]strikeout[/del]
    Output:
    custom_bb_code_output.del
  • [DETAIL] - Detail

    custom_bb_code_desc.detail
    Example:
    [detail]blah blah[/detail]
    Output:
    custom_bb_code_output.detail
  • [DL] - Download button

    custom_bb_code_desc.dl
    Example:
    [dl]http://www.vistax64.com/attachment.php?attachmentid=3199&d=1206387715[/dl]
    Output:
    custom_bb_code_output.dl
  • [DOS] - dos

    custom_bb_code_desc.dos
    Example:
    [dos]format c:[/dos]
    Output:
    custom_bb_code_output.dos
  • [EX] - Excel

    custom_bb_code_desc.ex
    Example:
    [ex]CD858F18E591BB1C&resid=CD858F18E591BB1C%21108&authkey=ABwW28h5A4HJONo&em=2&wdAllowInteractivity=False&wdHideGridlines=True&wdHideHeaders=True&wdDownloadButton=True[/ex]
    Output:
    custom_bb_code_output.ex
  • [FB] - facebook

    custom_bb_code_desc.fb
    Example:
    [fb]https://www.facebook.com/sevenforums/posts/906283782745514[/fb]
    Output:
    custom_bb_code_output.fb
  • [GP] - Google Presentation

    custom_bb_code_desc.gp
    Example:
    [gp]1OQCnICtnNz8ReqXfz6_m8gylgDsioLCblGKm696KyTM[/gp]
    Output:
    custom_bb_code_output.gp
  • [GS] - Google Spreadsheet

    custom_bb_code_desc.gs
    Example:
    [gs]0AmOHO6Cm8vvAdFR2b0dMMnVwMUE0MlpXYnowWnowWWc[/gs]
    Output:
    custom_bb_code_output.gs
  • [HL] - Highlight

    custom_bb_code_desc.hl
    Example:
    [hl]This is a highlight test[/hl]
    Output:
    custom_bb_code_output.hl
  • [I2] - Info2

    custom_bb_code_desc.i2
    Example:
    [i2]test[/i2]
    Output:
    custom_bb_code_output.i2
  • [INFO] - info

    custom_bb_code_desc.info
    Example:
    [info]This is a test info box[/info]
    Output:
    custom_bb_code_output.info
  • [INSTALL] - Install Button

    custom_bb_code_desc.install
    Example:
    [install]http://www.sevenforums.com/sfp/youtube.osdx[/install]
    Output:
    custom_bb_code_output.install
  • [IP] - ip

    custom_bb_code_desc.ip
    Example:
    [ip]138.199.66.11[/ip]
    Output:
    custom_bb_code_output.ip
  • [JUMP=option] - Jump to Anchor

    custom_bb_code_desc.jump
    Example:
    [jump=option1]See Option1[/jump]
    Output:
    custom_bb_code_output.jump
  • [KEY] - key

    custom_bb_code_desc.key
    Example:
    [key]Ctrl[/key]
    Output:
    custom_bb_code_output.key
  • [LINE] - line

    custom_bb_code_desc.line
    Example:
    [line].[/line]
    Output:
    custom_bb_code_output.line
  • [MENTION] - Mention

    custom_bb_code_desc.mention
    Example:
    [mention]Username[/mention]
    Output:
    custom_bb_code_output.mention
  • [METHOD=option] - method

    custom_bb_code_desc.method
    Example:
    [method="method One"]test[/method]
    Output:
    custom_bb_code_output.method
  • [MSVID] - msvideo

    custom_bb_code_desc.msvid
    Example:
    [msvid]//videoplayercdn.osi.office.net/hub/?csid=ux-cms-en-us-msoffice&uuid=d993c686-3eab-4f55-bdc4-e71503903eed&AutoPlayVideo=true&height=415&width=740[/msvid]
    Output:
    custom_bb_code_output.msvid
  • [N2] - Note2

    custom_bb_code_desc.n2
    Example:
    [n2]test[/n2]
    Output:
    custom_bb_code_output.n2
  • [NASA] - Nasa

    custom_bb_code_desc.nasa
    Example:
    [nasa].[/nasa]
    Output:
    custom_bb_code_output.nasa
  • [NOTE] - Note

    custom_bb_code_desc.note
    Example:
    [note]This can take a long time[/note]
    Output:
    custom_bb_code_output.note
  • [NUM] - Number

    custom_bb_code_desc.num
    Example:
    [num]1[/num]
    Output:
    custom_bb_code_output.num
  • [OPTION=option] - option

    custom_bb_code_desc.option
    Example:
    [option="option one"]Hello[/option]
    Output:
    custom_bb_code_output.option
  • [REL] - Related Tutorials

    custom_bb_code_desc.rel
    Example:
    [rel]test[/rel]
    Output:
    custom_bb_code_output.rel
  • [RELTEN] - Related 10 Tutorials

    custom_bb_code_desc.relten
    Example:
    [relten]test[/relten]
    Output:
    custom_bb_code_output.relten
  • [SEC=option] - section2

    custom_bb_code_desc.sec
    Example:
    [sec="1"]section 1[/sec]
    Output:
    custom_bb_code_output.sec
  • [SECTION] - section

    custom_bb_code_desc.section
    Example:
    [section]heading title[/section]
    Output:
    custom_bb_code_output.section
  • [T2] - Tip2

    custom_bb_code_desc.t2
    Example:
    [t2]test[/t2]
    Output:
    custom_bb_code_output.t2
  • [TEMP=option] - Temperature Conversion

    custom_bb_code_desc.temp
    Example:
    [temp=f]100[/temp]
    Output:
    custom_bb_code_output.temp
  • [TIP] - Tip

    custom_bb_code_desc.tip
    Example:
    [tip]Don't eat yellow snow[/tip]
    Output:
    custom_bb_code_output.tip
  • [TOC] - Table of Contents

    custom_bb_code_desc.toc
    Example:
    [toc][LIST] [*][jump=option1][B]Option One:[/B][/jump] See All Current Virtual Drives for Mounted Folders [*][jump=option2][B]Option Two:[/B][/jump] Mount Folder as Virtual Drive [*][jump=option3][B]O
    Output:
    custom_bb_code_output.toc
  • [TWEET] - Tweet

    custom_bb_code_desc.tweet
    Example:
    [tweet]429641515728527360[/tweet]
    Output:
    custom_bb_code_output.tweet
  • [USTREAM] - ustream

    custom_bb_code_desc.ustream
    Example:
    [ustream]522594[/ustream]
    Output:
    custom_bb_code_output.ustream
  • [VIMEO] - Player vimeo.com

    custom_bb_code_desc.vimeo
    Example:
    [vimeo]3053553[/vimeo]
    Output:
    custom_bb_code_output.vimeo
  • [W2] - Warn2

    custom_bb_code_desc.w2
    Example:
    [w2]test[/w2]
    Output:
    custom_bb_code_output.w2
  • [WARN] - Warning

    custom_bb_code_desc.warn
    Example:
    [warn]Formating your C: drive could kill your system[/warn]
    Output:
    custom_bb_code_output.warn
  • [WMV] - wmv

    custom_bb_code_desc.wmv
    Example:
    [wmv]http://res1.windows.microsoft.com/resbox/en/Windows 7/Main/e/5/e5307e1b-03b4-46a8-bce8-960ae79f2ba4/e5307e1b-03b4-46a8-bce8-960ae79f2ba4.wmv[/wmv]
    Output:
    custom_bb_code_output.wmv
  • [YOUTUBE] - youtube

    custom_bb_code_desc.youtube
    Example:
    [youtube]hl2UUunlI2Q[/youtube]
    Output:
    custom_bb_code_output.youtube
  • [YTHD] - Youtube HD

    custom_bb_code_desc.ythd
    Example:
    [ythd]w9o5Pw1npAk[/ythd]
    Output:
    custom_bb_code_output.ythd
Back
Top