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]/icon-512x512.png[/IMG]
    Output:
    /icon-512x512.png
  • [MEDIA=site] - Embedded Media

    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], [TABLE=collapse], [TABLE=full], [TABLE=center] - Tables

    Special markup to display tables in your content.
    Example:
    Default:
    [TABLE]
    [TR][TH]Header 1[/TH][TH]Header 2[/TH][/TR]
    [TR][TD]Content 1[/TD][TD]Content 2[/TD][/TR]
    [/TABLE]

    Collapse:
    [TABLE=collapse]
    [TR][TH]Header 1[/TH][TH]Header 2[/TH][/TR]
    [TR][TD]Content 1[/TD][TD]Content 2[/TD][/TR]
    [/TABLE]

    Full:
    [TABLE=full]
    [TR][TH]Header 1[/TH][TH]Header 2[/TH][/TR]
    [TR][TD]Content 1[/TD][TD]Content 2[/TD][/TR]
    [/TABLE]

    Center:
    [TABLE=center]
    [TR][TH]Header 1[/TH][TH]Header 2[/TH][/TR]
    [TR][TD]Content 1[/TD][TD]Content 2[/TD][/TR]
    [/TABLE]
    Output:
    Default:
    Header 1Header 2
    Content 1Content 2


    Collapse:
    Header 1Header 2
    Content 1Content 2


    Full:
    Header 1Header 2
    Content 1Content 2


    Center:
    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.
  • [ACRONYM=option] - Acronym

    Adds a tooltip to explain an acronym
    Example:
    [acronym="Laughing Out Loud"]LOL[/acronym]
    Output:
    LOL
  • [ANCHOR] - Anchor

    Adds an anchor point to which you can link.
    Example:
    [anchor]test[/anchor]
    (See the "link" tag below)
    Output:

    (See the "link" tag below)
  • [BACKGROUND=option] - Background Color

    Sets a background color for text
    Example:
    [background="purple"]Highlighted text[/background]
    Output:
    Highlighted text
  • [DATATABLE] [DATATABLE=option] - DataTable

    Advanced data table
    Example:
    [datatable]
    [tr]
    [th]Header 1[/th]
    [th]Header 2[/th]
    [th]Header 3[/th]
    [/tr]
    [tr][td]A[/td][td]B[/td][td]C[/td][/tr]
    [tr][td]D[/td][td]E[/td][td]F[/td][/tr]
    [/datatable]
    Output:
    Header 1Header 2Header 3
    ABC
    DEF
  • [ERROR] [ERROR=option] - Error

    Adds a box with an "Error" style.
    Example:
    [error]If the described steps don't work, you've done something wrong![/error]
    Output:
    If the described steps don't work, you've done something wrong!
  • [H] - Nice Header

    A nice blue header
    Example:
    [h]Section 1[/h]
    Output:
    Section 1
  • [HR] - Horizontal Rule

    Adds a horizontal line.
    Example:
    [hr][/hr]
    Output:

  • [INFORMATION] [INFORMATION=option] - Information

    Adds a box with an "Information" style.
    Example:
    [information]This is some useful information for you![/information]
    Output:
    This is some useful information for you!
  • [IRC=option] - IRC link

    Link to an IRC server or channel
    Example:
    [irc="irc.gbatemp.net:4500/gbatemp.net"]#gbatemp.net[/irc]
    Output:
  • [JUSTIFY] - Justify text

    Justifies the inner text
    Example:
    [justify]Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[/justify]
    Output:
    Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  • [LINK=option] - Link to anchor

    Links to an anchor made with the anchor tag.
    Example:
    [link=test]Go to test anchor[/link]
    Output:
  • [P] - Paragraph

    Paragraph tag
    Example:
    [p]This is a very small paragraph[/p]
    Output:

    This is a very small paragraph

  • [PRE] - Preformatted text

    Make text retrain whitespace etc.
    Example:
    [pre]This text has whitespace[/pre]
    Output:
    This   text       has            whitespace
  • [SUB] - Subscript

    Adds text in subscript.
    Example:
    The molecular formula of carbon dioxide is CO[sub]2[/sub].
    Output:
    The molecular formula of carbon dioxide is CO2.
  • [SUCCESS] [SUCCESS=option] - Success

    Adds a box with a "success" style.
    Example:
    [success]You have now correctly installed the software[/success]
    Output:
    You have now correctly installed the software
  • [SUP] - Superscript

    Adds text as superscript
    Example:
    x squared can be written as x[sup]2[/sup]
    Output:
    x squared can be written as x2
  • [TABLE] [TABLE=option] - Table

    Simple HTML table tag equivalent
    Example:
    [table]
    [tr]
    [th] [/th]
    [th]Header 1[/th]
    [th]Header 2[/th]
    [th]Header 3[/th]
    [/tr]
    [tr]
    [td="2r,red"][/td]
    [td="2r,top"]Data 1 (2 rows)[/td]
    [td]Data 2[/td]
    [td="right"]Data 3[/td]
    [/tr]
    [tr]
    [td="2c"]Data 4 (2 cols)[/td]
    [/tr]
    [/table]
    Output:
    Header 1Header 2Header 3
    Data 1 (2 rows)Data 2Data 3
    Data 4 (2 cols)
  • [TABS] - Tabs

    Renders a series of tabs
    Example:
    [tabs]
    [tab=Title 1]Content 1[/tab]
    [tab=Title 2]Content 2[/tab]
    [/tabs]
    Output:

    Title 1Title 2

    1. Content 1
    2. Content 2
  • [THUMBS] - Thumbnail container

    A container for thumbnails that provides a horizontal scroll when necessary.
    Example:
    [thumbs]Insert thumbnails here[/thumbs]
    Output:
    Insert thumbnails here
  • [TWEET] [TWEET=option] - Twitter embed

    Embed a twitter tweet
    Example:
    [tweet]https://twitter.com/GBAtemp/status/613666530937708544[/tweet]
    Output:
  • [WARNING] [WARNING=option] - Warning

    Adds a box with a "Warning" style.
    Example:
    [warning]Don't ever update your system unless it is proven safe![/warning]
    Output:
    Don't ever update your system unless it is proven safe!
  • [WIKI] [WIKI=option] - Wiki link

    Link to a GBAtemp Wiki page
    Example:
    [wiki]GBAtemp.net[/wiki]
    [wiki="GBAtemp.net"]GBAtemp[/wiki]
    Output:
General chit-chat
Help Users
  • Psionic Roshambo @ Psionic Roshambo:
    I just want a Pokemon Hell Raiser fan game 😭
  • K3Nv2 @ K3Nv2:
    Anyone wanna play with my joydock
  • BigOnYa @ BigOnYa:
    Biomutant looks cool tho, may have to try that
  • Quincy @ Quincy:
    Usually when such a big title leaks the Temp will be the first to report about it (going off of historical reports here, Pokemon SV being the latest one I can recall seeing pop up here)
  • K3Nv2 @ K3Nv2:
    I still like how a freaking mp3 file hacks webos all that security defeated by text yet again
  • BigOnYa @ BigOnYa:
    They have simulators for everything nowdays, cray cray. How about a sim that shows you playing the Switch.
  • K3Nv2 @ K3Nv2:
    That's called yuzu
    +1
  • BigOnYa @ BigOnYa:
    I want a 120hz 4k tv but crazy how more expensive the 120hz over the 60hz are. Or even more crazy is the price of 8k's.
  • K3Nv2 @ K3Nv2:
    No real point since movies are 30fps
  • BigOnYa @ BigOnYa:
    Not a big movie buff, more of a gamer tbh. And Series X is 120hz 8k ready, but yea only 120hz 4k games out right now, but thinking of in the future.
  • K3Nv2 @ K3Nv2:
    Mostly why you never see TV manufacturers going post 60hz
  • BigOnYa @ BigOnYa:
    I only watch tv when i goto bed, it puts me to sleep, and I have a nas drive filled w my fav shows so i can watch them in order, commercial free. I usually watch Married w Children, or South Park
  • K3Nv2 @ K3Nv2:
    Stremio ruined my need for nas
  • BigOnYa @ BigOnYa:
    I stream from Nas to firestick, one on every tv, and use Kodi. I'm happy w it, plays everything. (I pirate/torrent shows/movies on pc, and put on nas)
  • K3Nv2 @ K3Nv2:
    Kodi repost are still pretty popular
  • BigOnYa @ BigOnYa:
    What the hell is Kodi reposts? what do you mean, or "Wut?" -xdqwerty
  • K3Nv2 @ K3Nv2:
    Google them basically web crawlers to movie sites
  • BigOnYa @ BigOnYa:
    oh you mean the 3rd party apps on Kodi, yea i know what you mean, yea there are still a few cool ones, in fact watched the new planet of the apes movie other night w wifey thru one, was good pic surprisingly, not a cam
  • BigOnYa @ BigOnYa:
    Damn, only $2.06 and free shipping. Gotta cost more for them to ship than $2.06
  • BigOnYa @ BigOnYa:
    I got my Dad a firestick for Xmas and showed him those 3rd party sites on Kodi, he loves it, all he watches anymore. He said he has got 3 letters from AT&T already about pirating, but he says f them, let them shut my internet off (He wants out of his AT&T contract anyways)
  • K3Nv2 @ K3Nv2:
    That's where stremio comes to play never got a letter about it
  • BigOnYa @ BigOnYa:
    I just use a VPN, even give him my login and password so can use it also, and he refuses, he's funny.
  • BigOnYa @ BigOnYa:
    I had to find and get him an old style flip phone even without text, cause thats what he wanted. No text, no internet, only phone calls. Old, old school.
    BigOnYa @ BigOnYa: I had to find and get him an old style flip phone even without text, cause thats what he wanted...