Códigos BB

  • [B], [I], [U], [S] - bold, Itálica, Subrayar, Struck-through

    Basic text formatting for the wrapped text.
    Ejemplo:
    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.
    Salida:
    This is bold text.
    This is italic text.
    This is underlined text.
    This is struck-through text.
  • [COLOR=color], [BGCOLOR=color], [FONT=font], [SIZE=size] - Background color, Color, Font, Tamaño

    Advanced text formatting options for wrapped text.
    Ejemplo:
    This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
    This is [BGCOLOR=#FAA]red[/BGCOLOR] and [BGCOLOR=#AAF]blue[/BGCOLOR] highlighted text.
    This is [FONT=Courier New]Courier New[/FONT] text.
    This is [SIZE=1]small[/SIZE] and [SIZE=7]big[/SIZE] text.
    Salida:
    This is red and blue text.
    This is red and blue highlighted text.
    This is Courier New text.
    This is small and big text.
  • [SUB], [SUP] - Subscript, Superscript

    Position wrapped text.
    Ejemplo:
    This is [SUB]subscript[/SUB] text.
    This is [SUP]superscript[/SUP] text.
    Salida:
    This is subscript text.
    This is superscript text.
  • [URL], [EMAIL] - Enlazando

    Crea un enlace usando el texto seleccionado como objetivo.
    Ejemplo:
    [URL]http://www.example.com[/URL]
    [EMAIL]example@example.com[/EMAIL]
    Salida:
    Please, Acceder or Registrarse to view URLs content!

    example@example.com
  • [URL=enlace], [EMAIL=dirección] - Vinculación (avanzado)

    Enlaza el texto seleccionado a la página web o dirección de email indicada.
    Ejemplo:
    [URL=http://www.example.com]Ir a example.com[/URL]
    [EMAIL=example@example.com]Envíame un email[/EMAIL]
    Salida:
    Please, Acceder or Registrarse to view URLs content!

    Envíame un email
  • [USER=ID] - Vinculación al perfil

    Enlaces al perfil de un usuario. Esto generalmente se inserta automáticamente al citar a un usuario.
    Ejemplo:
    [USER=1]Usuario[/USER]
    Salida:
  • [IMG] - Imagen

    Muestra una imagen usando el texto seleccionado como una URL
    Ejemplo:
    [IMG]/imagenes_custom/logo-new.png[/IMG]
    Salida:
    /imagenes_custom/logo-new.png
  • [VIDEO] - Video

    Displays a video, using the wrapped text as the URL.
    Ejemplo:
    [VIDEO]https://gaming-force.es/styles/editor-manager/missing-video.mp3[/VIDEO]

    [VIDEO='width:300']https://gaming-force.es/styles/editor-manager/missing-video.mp3[/VIDEO]
    Salida:


  • [AUDIO] - Audio

    Displays an audio player, using the wrapped text as URL.
    Ejemplo:
    [AUDIO]https://gaming-force.es/styles/editor-manager/missing-audio.mp3[/AUDIO]
    Salida:
  • [MEDIA=sitio] - Media incrustado

    Incrusta vídeos en el mensaje desde sitios aprobados. Es recomendable usar el botón vídeo de la barra del editor.
    Sitios aprobados: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram, Pinterest, Reddit, SoundCloud, Spotify, TikTok, Tumblr, Twitch, Twitter, Vimeo, YouTube
    Ejemplo:
    [MEDIA=youtube]oHg5SJYRHA0[/MEDIA]
    Salida:
    Aquí aparecerá un reproductor integrado de YouTube.
  • [LIST] - Listas

    Muestra una lista punteada o numerada.
    Ejemplo:
    [LIST]
    [*]Punto 1
    [*]Punto 2
    [/LIST]
    [LIST=1]
    [*]Entrada 1
    [*]Entrada 2
    [/LIST]
    Salida:
    • Punto 1
    • Punto 2
    1. Entrada 1
    2. Entrada 2
  • [LEFT], [RIGHT], [CENTER], [JUSTIFY] - Text alignment

    Cambia la alineación del texto seleccionado.
    Ejemplo:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    [JUSTIFY]This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.[/JUSTIFY]
    Salida:
    Left-aligned​
    Center-aligned​
    Right-aligned​
    This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block. This is a justified text block.​
  • [QUOTE] - Texto citado

    Muestra texto citado de otra fuente. Se puede indicar también el nombre de la fuente.
    Ejemplo:
    [QUOTE]Texto citado[/QUOTE]
    [QUOTE=Una persona]Algo que dijo[/QUOTE]
    Salida:
    Please, Acceder or Registrarse to view quote content!
    Una persona dijo:
    Please, Acceder or Registrarse to view quote content!
  • [SPOILER] - Contenido del Spoiler

    Oculta el texto contenido en los spoilers de modo que debe hacerse clic para poder verlo.
    Ejemplo:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Título del Spoiler]Spoiler con título[/SPOILER]
    Salida:

    Please, Acceder or Registrarse to view spoiler content!

    Please, Acceder or Registrarse to view spoiler content!
  • [ISPOILER] - Inline text containing spoilers

    Oculta el texto contenido en los spoilers de modo que debe hacerse clic para poder verlo.
    Ejemplo:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    Salida:
    You have to click the following word to see the content.
  • [CODE] - Muestra código de programación

    Muestra el texto de varios idiomas de programación, destacando la sintaxis cuando es posible.
    Ejemplo:
    Código general:
    [CODE]Código
    general[/CODE]

    Código enriquecido:
    [CODE=rich]Código
    [COLOR=red]enriquecido[/COLOR][/CODE]

    Código PHP:
    [CODE=php]echo $hola . ' mundo';[/CODE]

    Código JS:
    [CODE=js]var hola = 'mundo';[/CODE]
    Salida:
    Código general:
    Código:
    Código
    general

    Código enriquecido:
    Enriquecido (Código BB):
    Código
    enriquecido

    Código PHP:
    PHP:
    echo $hola . ' mundo';

    Código JS:
    Código:
    var hola = 'mundo';
  • [ICODE] - Mostrar código de programación en línea

    Permite mostrar código en línea diferenciándolo del resto del contenido normal del mensaje. No puede resaltarse su sintaxis.
    Ejemplo:
    Los bloques de código en línea [ICODE]suponen una vía adecuada[/ICODE] para mostrar código en línea.
    Salida:
    Los bloques de código en línea suponen una vía adecuada para mostrar código en línea.
  • [TABLE] - Tables

    Special markup to display tables in your content.
    Ejemplo:
    [TABLE]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Salida:
    Header 1Header 2
    Content 1Content 2
  • [TABLE=class] - Tables (Advanced)

    Advanced table styling.
    Ejemplo:
    Option adds additional styling.
    [TABLE=noborder]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]

    Multiple styles can be combined.
    [TABLE=collapse,right,nobackground]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]

    [TABLE=collapse,center,alternate]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [TR]
    [TD]Content 1[/TD]
    [TD]Content 2[/TD]
    [/TR]
    [/TABLE]
    Salida:
    Option adds additional styling.
    Header 1Header 2
    Content 1Content 2

    Multiple styles can be combined.
    Header 1Header 2
    Content 1Content 2

    Header 1Header 2
    Content 1Content 2
    Content 1Content 2
  • [HEADING=level] - Headings levels 1 to 3

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

    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.
  • [INDENT] - Texto sangrado

    Sangría del texto seleccionado. Puede anidarse para grandes sangrías.
    Ejemplo:
    Texto regular
    [INDENT]Texto sangrado
    [INDENT]Más sangrado[/INDENT]
    [/INDENT]
    Salida:
    Texto regular
    Texto sangrado
    Más sangrado​
  • [PLAIN] - Texto plano

    Desactiva la traducción del código BB en el texto seleccionado.
    Ejemplo:
    [PLAIN]Esto no es texto [B]en negrita[/B].[/PLAIN]
    Salida:
    Esto no es texto [B]en negrita[/B].
  • [ATTACH] - Inserción de adjuntos

    Inserta un archivo adjunto en el punto indicado. Se insertará una miniatura o la versión a tamaño completo si el archivo adjunto es una imagen. Suele insertarse pulsando en el botón correspondiente
    Ejemplo:
    Miniatura: [ATTACH]123[/ATTACH]
    Tamaño completo: [ATTACH=full]123[/ATTACH]
    Salida:
    El contenido de los adjuntos aparece aquí.
  • [HIDE], [HIDEPOSTS], [HIDEREPLY], [HIDETHANKS], [HIDEREPLYTHANKS], [HIDEGROUP] - Hide content

    Hides wrapped text until certain conditions are fullfilled.
    Ejemplo:
    [HIDE]Hides wrapped content.[/HIDE]

    [HIDEPOSTS]Hides until user reached number of posts.[/HIDEPOSTS]

    [HIDEREPLY]Hides content until viewer replied to thread.[/HIDEREPLY]

    [HIDETHANKS]Hides content until viewer reacted to content.[/HIDETHANKS]

    [HIDEREPLYTHANKS]Hides content until viewer replied to thread or reacted to content.[/HIDEREPLYTHANKS]

    [HIDEGROUP=administrator]Hides content for non-administrators.[/HIDEGROUP]
    Salida:
    Hidden content
    You need to reply to this thread in order to see this content.
    Hidden content
    You need -1 more posts to view this content
    Hidden content
    You need to reply to this thread in order to see this content.
    Hidden content
    You need to react to this post in order to see this content.
    Hidden content
    You need to reply to this thread or react to this post in order to see this content.
    Hidden content
    You need to be in at least one of the following groups to see this content:
  • [ITDPDF] [ITDPDF=option] - [ITD] Embedded PDF

    Embed all online readable PDF files in to your board via custom BB Code.
    Ejemplo:
    [URL='?'][ITDPDF]?[/ITDPDF][/URL] (Replace both ? with PDF link)
    Salida:
    The contents of the PDF would appear here.

Personalize

Arriba Pie