BB codes

  • [B], [I], [U], [S] - Negrito, itálico, sublinhado, e riscado

    Faz com que o texto seleccionado fique em negrito, itálico, sublinhado ou riscado.
    Exemplo:
    Texto em [B]negrito[/B].
    Texto em [I]itálico[/I].
    Texto [U]sublinhado[/U].
    Texto [S]riscado[/S].
    Resultado:
    Texto em negrito.
    Texto em itálico.
    Texto sublinhado.
    Texto riscado.
  • [COLOR=color], [FONT=name], [SIZE=size] - Text Color, Font, and Size

    Muda a cor, o tipo de fonte ou o tamanho do texto.
    Exemplo:
    Texto em [COLOR=red]vermelho[/COLOR] e [COLOR=#0000cc]azul[/COLOR].
    Texto usando a fonte [FONT=Courier New]Courier New[/FONT].
    Texto [SIZE=1]pequeno[/SIZE] e texto [SIZE=7]grande[/SIZE].
    Resultado:
    Texto em vermelho e azul.
    Texto usando a fonte Courier New.
    Texto pequeno e texto grande.
  • [URL], [EMAIL] - Criação de Links

    Cria um link usando o texto seleccionado como destino.
    Exemplo:
    [URL]http://www.examplo.com[/URL]
    [EMAIL]examplo@examplo.com[/EMAIL]
    Resultado:
  • [URL=link], [EMAIL=address] - Linking (Advanced)

    Cria um link no texto para a página web especificada ou endereço de email.
    Exemplo:
    [URL=https://www.example.com]Go to example.com[/URL]
    [EMAIL=example@example.com]Email me[/EMAIL]
    Resultado:
  • [USER=ID] - Profile Linking

    Links to a user's profile. This is generally inserted automatically when mentioning a user.
    Exemplo:
    [USER=1]Nome de utilizador[/USER]
    Resultado:
  • [IMG] - Imagem

    Mostra uma imagem, usando o texto como sendo a URL.
    Exemplo:
    [IMG]https://www.meteopt.com/forum/styles/meteopt/header/logo.png[/IMG]
    Resultado:
    logo.png
  • [MEDIA=site] - Embedded Media

    Embute uma mídia a partir de sites permitidos em sua mensagem. Recomenda-se usar o botão mídia na barra do editor. Sites permitidos: Dailymotion; Facebook; Liveleak; Metacafe; Vimeo; YouTube;
    Sites Aprovados: ABC News, Acast, Amazon Product, Anchor, Apple Music, Apple Podcasts, Audioboom, Audiomack, Bandcamp, BBC News, BitChute, Bleacher Report videos, Brightcove, Castos, CBS News Video, Clyp, CNBC, CNN, CNNMoney, CodePen, Comedy Central, Coub, Dailymotion, Democracy Now!, dumpert, 8tracks, ESPN, Facebook, Falstad Circuit Simulator, Flickr, Fox News, Funny or Die, Gamespot, Getty Images, Gfycat, Gifs.com, GIPHY, GitHub Gist, Global News, GoFundMe, Google Drive, Google+, Google Sheets, Hudl, Hulu, IGN, IMDb trailers, Imgur, Indiegogo, Internet Archive, İzlesene, JSFiddle, JW Platform, Kaltura, Kontinental Hockey League (КХЛ), Kickstarter, Libsyn, Liveleak, Livestream, Mail.Ru, Medium, Megaphone, Metacafe, Mixcloud, MLB, MRCTV, MSNBC, National Geographic Channel, National Geographic Video, NBC News, NBC Sports, NHL Videos and Highlights, NPR, The New York Times Video, Odysee, Orfium, Pastebin, Pinterest, Podbean, Prezi, Reddit threads and comments, Rumble, Rutube, Sapo, Scribd, Sendvid, SlideShare, SoundCloud, Sporcle, Sportsnet, Spotify, Spreaker, Steam store, Stitcher, Straw Poll, Streamable, Streamja, Team Coco, TED Talks, Telegram, The Atlantic Video, The Guardian (obsolete), The Onion, TikTok, TMZ, TradingView, Trailer Addict, MyDailyFreedom, Tumblr, 247Sports, Twitch, Twitter, Ustream, VBOX7, Veoh, Vevo, Video Detective, Vimeo, Vine, VK, Vocaroo, Vox, Washington Post Video, Wistia, WorldStarHipHop, The Wall Street Journal Online, GameClips.io, Gamer DVR, Youku, YouMaker, YouTube
    Exemplo:
    [MEDIA=youtube]kQ0Eo1UccEE[/MEDIA]
    Resultado:
    Um leitor com um vídeo embutido do Youtube apareceria aqui.
  • [LIST] - Listas

    Mostra uma lista com marcadores ou numerada.
    Exemplo:
    [LIST]
    [*]Bullet 1
    [*]Bullet 2
    [/LIST]
    [LIST=1]
    [*]Entry 1
    [*]Entry 2
    [/LIST]
    Resultado:
    • Bullet 1
    • Bullet 2
    1. Entry 1
    2. Entry 2
  • [LEFT], [CENTER], [RIGHT] - Alinhamento do Texto

    Altera o alinhamento do texto seleccionado.
    Exemplo:
    [LEFT]Alinhado à esquerda[/LEFT]
    [CENTER]Centralizado[/CENTER]
    [RIGHT]Alinhado à direita[/RIGHT]
    Resultado:
    Alinhado à esquerda​
    Centralizado​
    Alinhado à direita​
  • [QUOTE] - Quoted text

    Mostra um texto que foi citado a partir de outra fonte.Você também pode especificar o nome dessa fonte.
    Exemplo:
    [QUOTE]Texto citado[/QUOTE]
    [QUOTE=Uma pessoa]Algo que ela disse[/QUOTE]
    Resultado:
    Uma pessoa disse:
    Algo que ela disse
  • [SPOILER] - Text containing spoilers

    Oculta textos que podem conter spoilers. Assim um botão deve ser clicado para o spoiler ser visto.
    Exemplo:
    [SPOILER]Spoiler Simples[/SPOILER]
    [SPOILER=Título do Spoiler]Spoiler com um título.[/SPOILER]
    Resultado:
    Spoiler Simples
    Spoiler com um título.
  • [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.
    Exemplo:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    Resultado:
    You have to click the following word to see the content.
  • [CODE] - Programming code display

    Apresenta o texto como sendo de uma linguagem de programação, destacando a sintaxe onde possível.
    Exemplo:
    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]
    Resultado:
    General code:
    Código:
    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.
    Exemplo:
    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].
    Resultado:
    Inline code sections are a convenient way of displaying code inline.

    Rich formatting within inline code sections is also supported.
  • [INDENT] - Text indent

    Insere um espaço no começo do texto. Este comando pode ser aninhado para recuos maiores.
    Exemplo:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    Resultado:
    Regular text
    Indented text​
    More indented​
  • [TABLE] - Tables

    Special markup to display tables in your content.
    Exemplo:
    [TABLE]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Resultado:
    Header 1Header 2
    Content 1Content 2
  • [HEADING=level] - Headings levels 1 to 3

    Marks text as a structured heading to facilitate machine readability.
    Exemplo:
    [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.
    Resultado:

    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

    Desabilita qualquer BB Code no texto.
    Exemplo:
    [PLAIN]Este texto não está em [B]negrito[/B].[/PLAIN]
    Resultado:
    Este texto não está em [B]negrito[/B].
  • [ATTACH] - Anexos

    Insere um anexo no ponto especificado. Se o anexo é uma imagem, uma miniatura ou a versão completa serão inseridas. Normalmente este código é inserido clicando no botão apropriado.
    Exemplo:
    Miniatura: [ATTACH]123[/ATTACH]
    Tamanho original: [ATTACH=full]123[/ATTACH]
    Resultado:
    O ficheiro anexado apareceria aqui.