• Our software update is now concluded. You will need to reset your password to log in. In order to do this, you will have to click "Log in" in the top right corner and then "Forgot your password?".
  • A reminder that our new forum software has 2FA! It can be accessed by clicking your username and then "Password and security" from the menu. We strongly suggest not reusing passwords for your online accounts and enabling 2FA if possible.
  • Welcome to PokéCommunity! Register now and join one of the best places on the 'net to talk Pokémon and more! Community members will not see the bottom screen advertisements.

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.pokecommunity.com/styles/pokecommunity/xenforo/childstyles/johtoelite/logo_with_wordmark-white.svg[/IMG]
    Output:
    logo_with_wordmark-white.svg
  • [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, 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:
    Spoiler:

    Spoiler: Spoiler 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
  • [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.
  • [ABBR] [ABBR=option] - Abbreviation

    An abbreviation, with mouse-over expansion
    Example:
    [abbr="on hover text"]text[/abbr]
    Output:
    text
  • [ACCORDION] [ACCORDION=option] - Accordion

    A customizable interactive accordion
    Example:
    [ACCORDION width=200]
    [SLIDE_HEADER]First Slide[/SLIDE_HEADER]
    [SLIDE]First slide content[/SLIDE]
    [SLIDE title="Second Slide"]Second slide content[/SLIDE]
    [/ACCORDION]
    Output:
    First Slide
    First slide content
    Second Slide
    Second slide content
  • [ADMIN] - Admin

    Example:
    [admin]Admin[/admin]
    Output:
    Admin
  • [ALBUM=option] - Album Image

    custom_bb_code_desc.album
    Example:
    [album=10512]86567[/album]
    Output:
    custom_bb_code_output.album
  • [IMAGE=option] - Align Image

    Example:
    [image=left]https://www.pokecommunity.com/uploads/imageshare/31_1557635579569237794.png[/image] This is the text that flows around the leftaligned image
    Output:
    This is the text that flows around the leftaligned image
  • [ANCHOR] [ANCHOR=option] - Anchor

    Generate a HTML anchor tag
    Example:
    Generate an anchor point;
    [anchor]introduction[/anchor]

    Goto an anchor point
    [anchor=#introduction]Click here to go to introduction[/anchor]
    Output:
    Generate an anchor point;


    Goto an anchor point
    Click here to go to introduction
  • [A_ID] - Anchor

    For setting anchors in posts. To be used with [aurl].
    Example:
    [a_id]point[/a_id]Paragraph Start

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur metus metus, rutrum nec augue sed, posuere laoreet lacus. In id enim non nisi mollis vestibulum a quis tortor. Donec tincidunt sem at posuere scelerisque. Aenean posuere turpis laoreet est congue laoreet eu at nisl. Nulla sit amet arcu eget est porttitor molestie. Integer facilisis commodo eros vel congue. Vivamus in mi at lorem fermentum facilisis. Proin a erat porttitor, commodo tortor vel, condimentum dui. Pellentesque justo massa, pellentesque eu semper non, sollicitudin et urna. Fusce cursus erat nec mauris pharetra, tincidunt malesuada leo ullamcorper. Donec iaculis sollicitudin lacus quis volutpat. Fusce dignissim porttitor leo varius porta. Aliquam erat volutpat. Pellentesque in nunc sed magna placerat euismod sit amet ut dolor. Proin dui sem, ultricies vel eleifend ac, condimentum in magna. Vivamus blandit dapibus porttitor.

    [aurl="point"]Link to top of paragraph.[/aurl]
    Output:
    Paragraph Start

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur metus metus, rutrum nec augue sed, posuere laoreet lacus. In id enim non nisi mollis vestibulum a quis tortor. Donec tincidunt sem at posuere scelerisque. Aenean posuere turpis laoreet est congue laoreet eu at nisl. Nulla sit amet arcu eget est porttitor molestie. Integer facilisis commodo eros vel congue. Vivamus in mi at lorem fermentum facilisis. Proin a erat porttitor, commodo tortor vel, condimentum dui. Pellentesque justo massa, pellentesque eu semper non, sollicitudin et urna. Fusce cursus erat nec mauris pharetra, tincidunt malesuada leo ullamcorper. Donec iaculis sollicitudin lacus quis volutpat. Fusce dignissim porttitor leo varius porta. Aliquam erat volutpat. Pellentesque in nunc sed magna placerat euismod sit amet ut dolor. Proin dui sem, ultricies vel eleifend ac, condimentum in magna. Vivamus blandit dapibus porttitor.

    Link to top of paragraph.
  • [ARTICLE] [ARTICLE=option] - Article

    Displays an article with an optional source attribution.
    Example:
    [ARTICLE=https://en.wikipedia.org/wiki/Article_(publishing)]
    A news article discusses current or recent news of either general interest (i.e. daily newspapers) or of a specific topic (i.e. political or trade news magazines, club newsletters, or technology news websites).

    A news article can include accounts of eyewitnesses to the happening event. It can contain photographs, accounts, statistics, graphs, recollections, interviews, polls, debates on the topic, etc. Headlines can be used to focus the reader’s attention on a particular (or main) part of the article. The writer can also give facts and detailed information following answers to general questions like who, what, when, where, why and how.
    [/ARTICLE]
    Output:
    Article:
    A news article discusses current or recent news of either general interest (i.e. daily newspapers) or of a specific topic (i.e. political or trade news magazines, club newsletters, or technology news websites).

    A news article can include accounts of eyewitnesses to the happening event. It can contain photographs, accounts, statistics, graphs, recollections, interviews, polls, debates on the topic, etc. Headlines can be used to focus the reader's attention on a particular (or main) part of the article. The writer can also give facts and detailed information following answers to general questions like who, what, when, where, why and how.
  • [ASSIST=option] - Assist

    custom_bb_code_desc.assist
    Example:
    [assist="This is the Assist tag"]Hover here for help[/assist]
    Output:
    custom_bb_code_output.assist
  • [ASSISTANTADMIN] - Assistant Admin

    custom_bb_code_desc.assistantadmin
    Example:
    [assistantadmin]Assistant Admin[/assistantadmin]
    Output:
    custom_bb_code_output.assistantadmin
  • [AUDIO] - Audio tag

    custom_bb_code_desc.audio
    Example:
    [audio]http://pokecommunity.com/images/pkmn_levelup.mp3[/audio]
    Output:
    custom_bb_code_output.audio
  • [BSS] - Battle Server Staff

    custom_bb_code_desc.bss
    Example:
    [bss]Battle Server Staff[/bss]
    Output:
    custom_bb_code_output.bss
  • [BIMG] [BIMG=option] - Block image

    Displays an image, allowing it to be resized, aligned or floated, and compared with another image.
    Example:
    [bimg]http://www.google.com/images/srpr/logo3w.png[/bimg]
    [bimg width=100px]http://www.google.com/images/srpr/logo3w.png[/bimg]
    Output:

  • [TEXTCOLLAPSE=option] - Collapsed Text

    custom_bb_code_desc.textcollapse
    Example:
    [textcollapse="10.0 to 9.0 - Masterful"]Its almost impossible to make a hack that is perfect, but ratings in this range get pretty close. These hacks are flawless in all…[/textcollapse]
    Output:
    custom_bb_code_output.textcollapse
  • [OWNER] - Community Owner

    custom_bb_code_desc.owner
    Example:
    [owner]Owner[/owner]
    Output:
    custom_bb_code_output.owner
  • [CRYSTALTIER] - Crystal Tier

    custom_bb_code_desc.crystaltier
    Example:
    [crystaltier]Crystal Tier[/crystaltier]
    Output:
    custom_bb_code_output.crystaltier
  • [CD=option] - CSS

    Example:
    [cd=blah][/cd]
    Output:
  • [DAILY] - Daily Staff

    custom_bb_code_desc.daily
    Example:
    [daily]Daily Staff[/daily]
    Output:
    custom_bb_code_output.daily
  • [DEVELOPER] - Developer

    custom_bb_code_desc.developer
    Example:
    [developer]Developer[/developer]
    Output:
    custom_bb_code_output.developer
  • [SIG_REASON=option] - Disable signature with reason

    Example:
    [sig_reason=The combined amount of images exceed the 350 pixel height limit.]signature here[/sig_reason]
    Output:
    This signature has been disabled.
    The combined amount of images exceed the 350 pixel height limit.
    Please review and fix the issues by reading the signature rules.

    You must edit it to meet the limits set by the rules before you may remove the [sig-reason] code from your signature. Removing this tag will re-enable it.

    Do not remove the tag until you fix the issues in your signature. You may be infracted for removing this tag if you do not fix the specified issues. Do not use this tag for decoration purposes.
  • [MODEROID] - Discordia Moderoid

    custom_bb_code_desc.moderoid
    Example:
    [moderoid]Discord Moderoid[/moderoid]
    Output:
    custom_bb_code_output.moderoid
  • [CLASS=option] - Div Class

    Example:
    [class=tcat]text here[/class]
    Output:
    text here
  • [ENCADRE] [ENCADRE=option] - Encadre

    This BB Code inserts a text box to the right of a text (absolute position). It has to be inserted just before the content. (width customizable in %)
    Example:
    [ENCADRE]This is a text box with a long text. Can be used with an article for example.[/ENCADRE]Content
    [ENCADRE width=30]This is a text box with a long text. Can be used with an article for example.[/ENCADRE]Content
    Output:
    Content
    Content
  • [EXAMPLE] - Example

    custom_bb_code_desc.example
    Example:
    [example]Flaming could be right here.[/example]
    Output:
    custom_bb_code_output.example
  • [FANGAMES] - Fangames Staff

    custom_bb_code_desc.fangames
    Example:
    [fangames]Fangames Staff[/fangames]
    Output:
    custom_bb_code_output.fangames
  • [FIELDSET] [FIELDSET=option] - Fieldset

    This BB Code inserts a fieldset
    Example:
    [fieldset]This is a fieldset[/fieldset]
    [fieldset title="Title"]This is a fieldset[/fieldset]
    [fieldset title="Title" width=80]This is a fieldset[/fieldset]
    Output:
    Fieldset:
    This is a fieldset

    Title
    This is a fieldset

    Title
    This is a fieldset
  • [FLEFT] - Float left

    Make a block float on the left
    Example:
    [fleft]Make me float on the left[/fleft]
    Output:
    Make me float on the left
  • [FRIGHT] - Float right

    Make a block float on the right
    Example:
    [FRIGHT]Make me float on the right[/FRIGHT]
    Output:
    Make me float on the right
  • [FLOAT=option] - Floating Alt Text

    custom_bb_code_desc.float
    Example:
    [float="Content here"]Hover over me![/float]
    Output:
    custom_bb_code_output.float
  • [GALLERY=option] - Gallery embed

    BB code for displaying gallery media items and albums.
    Example:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
    Output:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
  • [GLOW=option] - Glow

    custom_bb_code_desc.glow
    Example:
    [glow=red]AAAAAAH![/glow]
    Output:
    custom_bb_code_output.glow
  • [GOLDTIER] - Gold Supporter

    custom_bb_code_desc.goldtier
    Example:
    [goldtier]Gold Tier[/goldtier]
    Output:
    custom_bb_code_output.goldtier
  • [GVIEW] [GVIEW=option] - GVIEW

    This BB Code displays documents using the "Google Docs - Viewer" (supports many different file types:pdf,ppt,doc,xls...).
    Example:
    [GVIEW]http://research.google.com/archive/bigtable-osdi06.pdf[/GVIEW]
    Output:
  • [H1] - h1

    Example:
    [h1]Example[/h1]
    Normal text
    Output:

    Example

    Normal text
  • [H2] - h2

    Example:
    [h2]Example[/h2]
    Normal text
    Output:

    Example

    Normal text
  • [H3] - h3

    Example:
    [h3]Example[/h3]
    Normal text
    Output:

    Example

    Normal text
  • [H4] - h4

    Example:
    [h4]Example[/h4]
    Normal text
    Output:

    Example

    Normal text
  • [SPOILER] [SPOILER=option] - Hidden content

    Example:
    [spoiler]Content in this tag is hidden until the "Show" button is clicked![/spoiler]

    [spoiler=Helpful Info]Content in this tag is hidden until the "Show" button is clicked, but you can explain what is under the spoiler too![/spoiler]
    Output:
    Spoiler:


    Spoiler: Helpful Info
  • [SPOILERTITLE=option] - Hidden content with Title

    custom_bb_code_desc.spoilertitle
    Example:
    [spoilertitle=This is a title!]This spoiler has a title![/spoilertitle]
    Output:
    custom_bb_code_output.spoilertitle
  • [HR] [HR=option] - Horizontal line

    Example:
    Default line:
    [hr]
    Unformatted line:
    [hr=0]
    Solid line:
    [hr=1]
    Lightly faded on both sides:
    [hr=2]
    Significantly faded on both sides:
    [hr=3]
    Faded to left:
    [hr=4]
    Faded from right:
    [hr=5]
    Output:
    Default line:

    Unformatted line:

    Solid line:

    Lightly faded on both sides:

    Significantly faded on both sides:

    Faded to left:

    Faded from right:

  • [DIV=option] - HTML Division (CSS)

    Example:
    [div="color: red; background-color: white; border: 1px solid black; padding: 3px;"]This is actually CSS.[/div]
    Output:
    This is actually CSS.
  • [ICON] - Icon

    Example:
    [icon]angellist[/icon]
    Output:
  • [CIMG=option] - Image CSS

    Example:
    [cimg="border: 1px solid black; padding: 1px; background-color: white;"]http://img.skitch.com/20090810-cy5h8syy26pyc3g653tk9eixd9.png[/cimg]
    Output:
  • [ICLASS=option] - Inline with Class

    custom_bb_code_desc.iclass
    Example:
    [iclass=tcat]text here[/iclass]
    Output:
    custom_bb_code_output.iclass
  • [KBD] - Keyboard Input

    custom_bb_code_desc.kbd
    Example:
    This is a [kbd]command[/kbd]
    Output:
    custom_bb_code_output.kbd
  • [LARGE] - Large

    Example:
    [large]Large and [large]larger…[/large][/large]
    Output:
    Large and larger…
  • [LATEX] [LATEX=option] - LaTeX

    Renders LaTeX markup.
    Example:
    [LATEX]c=\sqrt{a^2+b^2}[/LATEX]
    Output:
    LaTeX:
    \[c=\sqrt{a^2+b^2}\]
  • [AURL=option] - Link Anchor (alias)

    Example:
    [a id]point[/a id]

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur metus metus, rutrum nec augue sed, posuere laoreet lacus. In id enim non nisi mollis vestibulum a quis tortor. Donec tincidunt sem at posuere scelerisque. Aenean posuere turpis laoreet est congue laoreet eu at nisl. Nulla sit amet arcu eget est porttitor molestie. Integer facilisis commodo eros vel congue. Vivamus in mi at lorem fermentum facilisis. Proin a erat porttitor, commodo tortor vel, condimentum dui. Pellentesque justo massa, pellentesque eu semper non, sollicitudin et urna. Fusce cursus erat nec mauris pharetra, tincidunt malesuada leo ullamcorper. Donec iaculis sollicitudin lacus quis volutpat. Fusce dignissim porttitor leo varius porta. Aliquam erat volutpat. Pellentesque in nunc sed magna placerat euismod sit amet ut dolor. Proin dui sem, ultricies vel eleifend ac, condimentum in magna. Vivamus blandit dapibus porttitor.

    [aurl="point"]Link to top of paragraph.[/aurl]
    Output:
    [a id]point[/a id]

    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur metus metus, rutrum nec augue sed, posuere laoreet lacus. In id enim non nisi mollis vestibulum a quis tortor. Donec tincidunt sem at posuere scelerisque. Aenean posuere turpis laoreet est congue laoreet eu at nisl. Nulla sit amet arcu eget est porttitor molestie. Integer facilisis commodo eros vel congue. Vivamus in mi at lorem fermentum facilisis. Proin a erat porttitor, commodo tortor vel, condimentum dui. Pellentesque justo massa, pellentesque eu semper non, sollicitudin et urna. Fusce cursus erat nec mauris pharetra, tincidunt malesuada leo ullamcorper. Donec iaculis sollicitudin lacus quis volutpat. Fusce dignissim porttitor leo varius porta. Aliquam erat volutpat. Pellentesque in nunc sed magna placerat euismod sit amet ut dolor. Proin dui sem, ultricies vel eleifend ac, condimentum in magna. Vivamus blandit dapibus porttitor.

    Link to top of paragraph.
  • [ALERT] [ALERT=option] - Mod:Alert

    Moderator only Alert banner
    Example:
    [alert=Title]Alert[/alert]
    Output:
    title Alert
  • [INFORMATION] [INFORMATION=option] - Mod:Info

    Moderator only Information banner
    Example:
    [information=Title]Information[/information]
    Output:
    title Information
  • [STOP] [STOP=option] - Mod:Stop

    Moderator only Stop banner
    Example:
    [stop=Title]Stop[/stop]
    Output:
    title Stop
  • [WARNING] [WARNING=option] - Mod:Warning

    Moderator only Warning banner
    Example:
    [warning=Title]Warning[/warning]
    Output:
    title Warning
  • [MOD] - Moderator

    custom_bb_code_desc.mod
    Example:
    [mod]Moderator[/mod]
    Output:
    custom_bb_code_output.mod
  • [PLATINUMTIER] - Platinum tier

    custom_bb_code_desc.platinumtier
    Example:
    [platinumtier]Platinum Tier[/platinumtier]
    Output:
    custom_bb_code_output.platinumtier
  • [PCLOGO] - PokéCommunity Logo

    custom_bb_code_desc.pclogo
    Example:
    [pclogo]*[/pclogo]
    Output:
    custom_bb_code_output.pclogo
  • [PROTIP] - Protip

    custom_bb_code_desc.protip
    Example:
    [protip]Protip information goes here.[/protip]
    Output:
    custom_bb_code_output.protip
  • [RUBY=option] - Ruby

    custom_bb_code_desc.ruby
    Example:
    [ruby="Pocket Monsters"]ポケットモンスター[/ruby]
    Output:
    custom_bb_code_output.ruby
  • [SMOD] - S-mod

    custom_bb_code_desc.smod
    Example:
    [smod]Super Moderator[/smod]
    Output:
    custom_bb_code_output.smod
  • [SILVERTIER] - Silver Supporter

    custom_bb_code_desc.silvertier
    Example:
    [silvertier]Silver Tier[/silvertier]
    Output:
    custom_bb_code_output.silvertier
  • [SLIDER] [SLIDER=option] - Slider

    Cycles through slides in a slide-show format.
    Example:
    [SLIDER]
    [SLIDE_HEADER]Title 1[/SLIDE_HEADER]
    [SLIDE align=center]Content 1[/SLIDE]
    [SLIDE]Content 2[/SLIDE]
    [SLIDE]Content 3[/SLIDE]
    [SLIDE open=1]Content 4[/SLIDE]
    [/SLIDER]
    Output:
    Title 1
    Content 1
    Content 2
    Content 3
    Content 4
  • [SMALL] - Small text

    custom_bb_code_desc.small
    Example:
    [small]Smaller[/small] bigger [small]small [small]and smaller[/small] [small]and smaller[/small] [small]and smaller[/small] [small]and smaller[/small][/small]
    Output:
    custom_bb_code_output.small
  • [S_HIGHLIGHT] - Smart Highlight

    custom_bb_code_desc.s_highlight
    Example:
    [s_highlight]Highlighted text[/s_highlight] here.
    Output:
    custom_bb_code_output.s_highlight
  • [SMT] - Social Media Team

    custom_bb_code_desc.smt
    Example:
    [smt]Social Media Team[/smt]
    Output:
    custom_bb_code_output.smt
  • [SOUND=option] - Sound clip

    Example:
    [sound="Level up!"]https://www.pokecommunity.com/images/pkmn_levelup.mp3[/sound]
    Output:
  • [SOUNDCLOUD] - SoundCloud

    Example:
    [soundcloud]http://soundcloud.com/matas/hobnotropic[/soundcloud]
    Output:
  • [SPAN=option] - Span Element (CSS)

    Example:
    [span="color: green; font-size: 8pt;"]This is actually CSS text.[/span]
    Output:
    This is actually CSS text.
  • [STAFFADMIN] - Staff Admin

    custom_bb_code_desc.staffadmin
    Example:
    [staffadmin]Staff Admin[/staffadmin]
    Output:
    custom_bb_code_output.staffadmin
  • [STYLEDEVELOPER] - Style Developer

    custom_bb_code_desc.styledeveloper
    Example:
    [styledeveloper]Style Developer[/styledeveloper]
    Output:
    custom_bb_code_output.styledeveloper
  • [CSS_DIV=option] - Styled Division Input

    Example:
    [css_div="padding: 2px 2px 2px 2px; border: dashed 1px #60B530; font-variant: small-caps; color: #60B530; background-color: #FFFFFF;"]This division box has CSS styling it.[/css_div]
    Output:
    This division box has CSS styling it.
  • [SUB] - Subscript

    custom_bb_code_desc.sub
    Example:
    [sub]C[/sub]O[sup]2[/sup]
    Output:
    custom_bb_code_output.sub
  • [SUP] - Superscript

    custom_bb_code_desc.sup
    Example:
    Thursday the 30[sup]th[/sup]
    Output:
    custom_bb_code_output.sup
  • [TAB=option] - Tab

    Example:
    [tab="hello"]Hello[/tab]
    Output:
    [tab="hello"]Hello[/tab]
  • [TABGROUP] - Tab Group

    custom_bb_code_desc.tabgroup
    Example:
    [tabgroup][tab="hello"]Hello[/tab][tab="world"]World[/tab][/tabgroup]
    Output:
    custom_bb_code_output.tabgroup
  • [TABCONTENT] - Tabbed Content Container

    custom_bb_code_desc.tabcontent
    Example:
    [tabcontent][tabpanel="hello"]Hello world![/tabpanel][tabpanel="world"]World, hello![/tabpanel][/tabcontent]
    Output:
    custom_bb_code_output.tabcontent
  • [TABPANEL=option] - Tabbed Panel

    custom_bb_code_desc.tabpanel
    Example:
    [tabpanel="world"]World, hello![/tabpanel]
    Output:
    custom_bb_code_output.tabpanel
  • [TABS] [TABS=option] - Tabs

    Render Tabs into a post
    Example:
    [TABS]
    [SLIDE_HEADER]Title 1[/SLIDE_HEADER]
    [SLIDE]Content 1 - [tab=2]Link to tab 2[/tab][/SLIDE]
    [SLIDE title="Title 2"]Content 2[/SLIDE]
    [/TABS]
    [TABS width=200]
    [SLIDE_HEADER]First Slide[/slide_header]
    [SLIDE]First tab content - [tab=2]Link to tab 2[/tab][/SLIDE]
    [SLIDE title="Second Slide"]Second tab content[/SLIDE]
    [/TABS]
    Output:

  • [TIME] [TIME=option] - Time

    Displays a time or date based on a member's timezone preference.
    Example:
    [TIME=datetime]2050-12-12T03:12:46+0000[/TIME]
    Output:
  • [TITLE=option] - Title

    custom_bb_code_desc.title
    Example:
    [title="Internet Protocol"]IP[/title]
    Output:
    custom_bb_code_output.title
  • [TWITCH] - Twitch Channel Embed

    custom_bb_code_desc.twitch
    Example:
    [twitch]thepokecommunity[/twitch]
    Output:
    custom_bb_code_output.twitch
  • [TWOCOLUMN] - Two Column Text

    custom_bb_code_desc.twocolumn
    Example:
    [twocolumn]Lorem ipsum dolor sit amet, consectetur adipiscing elit, set eiusmod tempor incidunt et labore et dolore magna aliquam. Ut enim ad minim veniam, quis nostrud exerc.[/twocolumn]
    Output:
    custom_bb_code_output.twocolumn
  • [SPACER=option] - Vertical Spacer

    Example:
    Hello world
    [spacer="100"][/spacer]
    Giant space
    Output:
    Hello world

    Giant space
  • [VIDEO] - Video Player

    Example:
    [video]https://www.pokecommunity.com/images/wtp_mewtwo.mp4[/video]
    Output:
  • [YOUTUBE] - YouTube

    custom_bb_code_desc.youtube
    Example:
    [youtube]tAA_yWX8ycQ[/youtube]
    Output:
    custom_bb_code_output.youtube
  • [YT] - YouTube Shorthand

    custom_bb_code_desc.yt
    Example:
    [yt]tAA_yWX8ycQ[/yt]
    Output:
    custom_bb_code_output.yt
Back
Top