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 de texto, 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] - Enlace

    Crea un enlace usando el texto seleccionado como destino.
    Ejemplo:
    [URL]https://www.example.com[/URL]
    [EMAIL]ejemplo@example.com[/EMAIL]
    Salida:
  • [URL=enlace], [EMAIL=dirección] - Enlace (Avanzado)

    Enlaza el texto seleccionado a la página web o dirección de correo electrónico especificada.
    Ejemplo:
    [URL=https://www.example.com]Ir a example.com[/URL]
    [EMAIL=example@example.com]Envíame un correo electrónico[/EMAIL]
    Salida:
  • [USER=ID] - Enlace de Perfil

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

    Muestra una imagen usando el texto seleccionado como una URL.
    Ejemplo:
    [IMG]https://opengamescommunity.com/data/assets/logo/first_h2-1-fullrond.png[/IMG]
    Salida:
    first_h2-1-fullrond.png
  • [VIDEO] - Video

    Displays a video, using the wrapped text as the URL.
    Ejemplo:
    [VIDEO]https://opengamescommunity.com/index.php?styles/editor-manager/missing-video.mp3[/VIDEO]

    [VIDEO='width:300']https://opengamescommunity.com/index.php?styles/editor-manager/missing-video.mp3[/VIDEO]
    Salida:


  • [AUDIO] - Audio

    Displays an audio player, using the wrapped text as URL.
    Ejemplo:
    [AUDIO]https://opengamescommunity.com/index.php?styles/editor-manager/missing-audio.mp3[/AUDIO]
    Salida:
  • [MEDIA=sitio] - Insertar Multimedia

    Insertar multimedia en el mensaje desde sitios aprobados. Se recomienda usar el botón multimedia en la barra de herramientas 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:
    Un reproductor de YouTube insertado aparecería aquí.
  • [LIST] - Listas

    Muestra una lista con viñetas o numerada.
    Ejemplo:
    [LIST]
    [*]Viñeta 1
    [*]Viñeta 2
    [/LIST]
    [LIST=1]
    [*]Entrada 1
    [*]Entrada 2
    [/LIST]
    Salida:
    • Viñeta 1
    • Viñeta 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 que ha sido citado de otra fuente. También puede indicar el nombre de la fuente.
    Ejemplo:
    [QUOTE]Texto citado[/QUOTE]
    [QUOTE=Una persona]Algo que dijeron[/QUOTE]
    Salida:
    Una persona dijo:
    Algo que dijeron
  • [SPOILER] - Contenido del Spoiler

    Oculta el texto contenido en los spoilers de modo que debe hacerse clic en él para poder verlo.
    Ejemplo:
    [SPOILER]Spoiler simple[/SPOILER]
    [SPOILER=Título del Spoiler]Spoiler con un título[/SPOILER]
    Salida:
    Spoiler simple
    Spoiler con un título
  • [ISPOILER] - Inline text containing spoilers

    Oculta el texto contenido en los spoilers de modo que debe hacerse clic en él 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 texto en uno de varios lenguajes de programación, resaltando la sintaxis siempre que sea 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=javascript]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 Lua:
    var hola = 'mundo';
  • [ICODE] - Muestra código de programación en línea

    Permite mostrar código en línea diferenciándolo del contenido normal del mensaje. La sintaxis no se resaltará.
    Ejemplo:
    Los bloques de código en línea [ICODE]son ​​una forma conveniente[/ICODE] de mostrar código en línea.
    Salida:
    Los bloques de código en línea son ​​una forma conveniente de 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=nivel] - Niveles de encabezados del 1 al 3

    Marca el texto como un encabezado estructurado para facilitar la lectura automática.
    Ejemplo:
    [HEADING=1]Título principal[/HEADING]
    Este texto viene bajo un título principal, usado para separar las secciones primarias de un artículo.

    [HEADING=2]Título menor[/HEADING]
    Cuando necesite subdividir las secciones primarias de un artículo, utilice un encabezamiento menor de nivel 2.

    [HEADING=3]Subtítulo[/HEADING]
    Si necesita una subdivisión adicional, puede bajar al nivel 3.
    Salida:

    Título principal​

    Este texto viene bajo un título principal, usado para separar las secciones primarias de un artículo.

    Título menor​

    Cuando necesite subdividir las secciones primarias de un artículo, utilice un encabezamiento menor de nivel 2.

    Subtítulo​

    Si necesita una subdivisión adicional, puede bajar al nivel 3.
  • [INDENT] - Sangría

    Sangría del texto seleccionado. Esto se puede anidar para sangrías más grandes.
    Ejemplo:
    Texto regular
    [INDENT]Texto con sangría[/INDENT]
    [INDENT=2]Más sangría[/INDENT]
    Salida:
    Texto regular
    Texto con sangría​
    Más sangría​
  • [PLAIN] - Texto sin formato

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

    Inserta un archivo adjunto en el punto especificado. Si el archivo adjunto es una imagen, se insertará una miniatura o una versión a tamaño completo. Esto generalmente se insertará haciendo clic en el botón correspondiente.
    Ejemplo:
    Miniatura: [ATTACH]123[/ATTACH]
    Tamaño completo: [ATTACH=full]123[/ATTACH]
    Salida:
    El contenido de los archivos adjuntos aparecería 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:
Arriba