BB codes

  • [B], [I], [U], [S] - Bold, italics, underline, and strike-through

    Hace que el texto salga en negritas, cursiva, subrayado o tachado.
    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], [FONT=name], [SIZE=size] - Text Color, Font, and Size

    Cambia el color, la fuente o el tamaño del texto.
    Ejemplo:
    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.
    Salida:
    This is red and blue text.
    This is Courier New text.
    This is small and big text.
  • [URL], [EMAIL] - Linking

    Crea un vínculo utilizando el texto envuelto como destino.
    Ejemplo:
    [URL]https://www.example.com[/URL]
    [EMAIL][email protected][/EMAIL]
    Salida:
  • [URL=link], [EMAIL=address] - Linking (Advanced)

    Vincula el texto envuelto a la página web o dirección de correo electrónico especificadas.
    Ejemplo:
    [URL=https://www.example.com]Go to example.com[/URL]
    [[email protected]]Email me[/EMAIL]
    Salida:
  • [USER=ID] - Profile Linking

    Enlaces al perfil de un usuario. Por lo general, se inserta automáticamente cuando se menciona a un usuario.
    Ejemplo:
    [USER=1]Usuario[/USER]
    Salida:
  • [IMG] - Image

    Muestra una imagen, utilizando el texto envuelto como URL.
    Ejemplo:
    [IMG]https://foros.rocksonora.com/images/rocksonora-foros.png[/IMG]
    Salida:
    rocksonora-foros.png
  • [MEDIA=site] - Embedded Media

    Incrusta medios de sitios aprobados en su mensaje. Se recomienda que utilice el botón multimedia en la barra de herramientas del editor.
    Sitios aprobados: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram (Legacy), Liveleak, Metacafe, Pinterest, Reddit, SoundCloud, Spotify, TikTok, Tumblr, Twitch, Twitter, Vimeo, YouTube
    Ejemplo:
    [MEDIA=youtube]kQ0Eo1UccEE[/MEDIA]
    Salida:
    An embedded YouTube player would appear here.
  • [LIST] - Listas

    Muestra una lista con viñetas o numerada.
    Ejemplo:
    [LIST]
    [*]Bullet 1
    [*]Bullet 2
    [/LIST]
    [LIST=1]
    [*]Entry 1
    [*]Entry 2
    [/LIST]
    Salida:
    • Bullet 1
    • Bullet 2
    1. Entry 1
    2. Entry 2
  • [LEFT], [CENTER], [RIGHT] - Alineación del texto

    Cambia la alineación del texto ajustado.
    Ejemplo:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    Salida:
    Left-aligned​
    Center-aligned​
    Right-aligned​
  • [QUOTE] - Texto citado

    Muestra texto citado de otra fuente. También puede atribuir el nombre de la fuente.
    Ejemplo:
    [QUOTE]Texto citado[/QUOTE]
    [QUOTE=A person]bla bla bla ...[/QUOTE]
    Salida:
    Texto citado
    A person said:
    bla bla bla ...
  • [SPOILER] - Text containing spoilers

    Oculta texto que puede contener spoilers, por lo que el espectador debe hacer clic en él para que se vea.
    Ejemplo:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Spoiler Title]Spoiler with a title[/SPOILER]
    Salida:
    Simple spoiler
    Spoiler with a title
  • [ISPOILER] - Texto en línea que contiene spoilers

    Le permite mostrar texto en línea entre el contenido normal que oculta el texto que puede contener spoilers y el espectador debe hacer clic en él para que lo vea.
    Ejemplo:

    Tiene que hacer clic en la siguiente palabra [ISPOILER] [/ ISPOILER] para ver el contenido.
    Salida:

    Tiene que hacer clic en la siguiente palabra [/ ISPOILER] para ver el contenido.
  • [CODE] - Visualización del código de programación

    Muestra texto en uno de varios lenguajes de programación, destacando la sintaxis cuando es posible.
    Ejemplo:
    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]
    Salida:
    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] - Visualización del código de programación en línea

    Le permite mostrar código en línea entre el contenido de publicación normal. La sintaxis no se resaltará.
    Ejemplo:
    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].
    Salida:
    Inline code sections are a convenient way of displaying code inline.

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

    Esto se puede anidar para obtener sangrías más grandes.
    Ejemplo:
    Regular text
    [INDENT]Indented text[/INDENT]
    [INDENT=2]More indented[/INDENT]
    Salida:
    Regular text
    Indented text​
    More indented​
  • [TABLE] - Tables

    Marcado especial para mostrar tablas en su contenido.
    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
  • [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.
  • [PLAIN] - Texto sin formato

    Desactiva la traducción del código BB en el texto envuelto.
    Ejemplo:
    [PLAIN]This is not [B]bold[/B] text.[/PLAIN]
    Salida:
    This is not [B]bold[/B] text.
  • [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 en tamaño completo. Esto generalmente se insertará haciendo clic en el botón correspondiente.
    Ejemplo:
    Thumbnail: [ATTACH]123[/ATTACH]
    Full size: [ATTACH=full]123[/ATTACH]
    Salida:
    El contenido de los archivos adjuntos aparecería aquí.
  • [GALLERY=option] - Gallery embed

    Código BB para mostrar álbumes y elementos multimedia de la galería.
    Ejemplo:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
    Salida:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
Top