BB codes

  • [B], [I], [U], [S] - bold, Italico, Sottolineato, Struck-through

    Applies basic formatting to the wrapped text.
    Esempio:
    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.
    Risultato:
    This is bold text.
    This is italic text.
    This is underlined text.
    This is struck-through text.
  • [COLOR=color], [BGCOLOR=color], [FONT=name], [SIZE=size] - Background Color, Colore Testo, Font, Dimensione

    Applies advanced formatting to the wrapped text.
    Esempio:
    This is [COLOR=red]red[/COLOR] and [COLOR=#0000cc]blue[/COLOR] text.
    This is text with [BGCOLOR=#ffaaaa]red[/BGCOLOR] and [BGCOLOR=#aaaaff]blue[/BGCOLOR] background.
    This is [FONT=Courier New]Courier New[/FONT] text.
    This is [SIZE=1]small[/SIZE] and [SIZE=8]big[/SIZE] text.
    Risultato:
    This is red and blue text.
    This is text with red and blue background.
    This is Courier New text.
    This is small and big text.
  • [SUB], [SUP] - Subscript, Superscript

    Offset wrapped text.
    Esempio:
    This text contains [SUB]subscript[/SUB].
    This text contains [SUP]superscript[/SUP].
    Risultato:
    This text contains subscript.
    This text contains superscript.
  • [URL], [EMAIL] - Link

    Crea un link usando il testo incluso come destinazione.
    Esempio:
    [URL]http://www.esempio.it[/URL]
    [EMAIL]esempio@esempio.it[/EMAIL]
    Risultato:
  • [URL=link], [EMAIL=indirizzo e-mail] - Link (Avanzato)

    Linka il testo incluso ad una specifica pagina web o indirizzo e-mail.
    Esempio:
    [URL=http://www.esempio.it]Vai alla sito esempio.it[/URL]
    [EMAIL=esempio@esempio.it]Scrivimi una e-mail[/EMAIL]
    Risultato:
  • [USER=ID] - Collegamento al Profilo Utente

    Collegamento al profilo dell'utente. Viene normalmente inserito quanto l'utente viene taggato.
    Esempio:
    [USER=1]Nome Utente[/USER]
    Risultato:
  • [IMG] - Immagine

    Fa vedere una immagine nei messaggi usando il testo incluso come URL.
    Esempio:
    [IMG]https://www.luceradenteforum.it/@imagePath/xenforo/logo.og.png[/IMG]
    Risultato:
    logo.og.png
  • [MEDIA=sito] - Embedded Media

    Integra file multimediali provenienti da siti approvati nei tuoi messaggi. Si raccomanda di utilizzare il pulsantino "media" che torvi nella toolbar dell'editor dei messaggi.
    Siti Approvati: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Instagram (Legacy), Liveleak, Metacafe, Pinterest, Reddit, SoundCloud, Spotify, Tumblr, Twitch, Twitter, Vimeo, YouTube
    Esempio:
    [MEDIA=youtube]oHg5SJYRHA0[/MEDIA]
    Risultato:
    Qui dovrebbe apparire un filmato YouTube.
  • [LIST] - Organizzare delle liste

    Mostra una lista puntata o numerata.
    Esempio:
    [LIST]
    [*]Punto 1
    [*]Punto 2
    [/LIST]
    [LIST=1]
    [*]Numero 1
    [*]Numero 2
    [/LIST]
    Risultato:
    • Punto 1
    • Punto 2
    1. Numero 1
    2. Numero 2
  • [LEFT], [CENTER], [RIGHT], [JUSTIFY] - Text alignment

    Modifica l'allineamento del testo incluso.
    Esempio:
    [LEFT]Left-aligned[/LEFT]
    [CENTER]Center-aligned[/CENTER]
    [RIGHT]Right-aligned[/RIGHT]
    [JUSTIFY]This is a justified text block with a long content to demonstrate the justification.[/JUSTIFY]
    Risultato:
    Left-aligned​
    Center-aligned​
    Right-aligned​
    This is a justified text block with a long content to demonstrate the justification.​
  • [QUOTE] - Testo Citato (o quotato)

    Mostra il testo che è stato inserito da un altro utente o preso da un'altro sito nel nostro messaggio. Utile per concatenare le discussioni e rendere la leggibilità più semplice.
    Esempio:
    [QUOTE]Testo Citato[/QUOTE]
    [QUOTE=nome utente]Testo scritto da "Nome Utente"[/QUOTE]
    Risultato:
    nome utente ha scritto:
    Testo scritto da "Nome Utente"
  • [SPOILER] - Text containing spoilers

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    Esempio:
    [SPOILER]Simple spoiler[/SPOILER]
    [SPOILER=Spoiler Title]Spoiler with a title[/SPOILER]
    Risultato:
    Simple spoiler
    Spoiler with a title
  • [ISPOILER] - Inline text containing spoilers

    Hides text that may contain spoilers so that it must be clicked by the viewer to be seen.
    Esempio:
    This is a [ISPOILER]Simple spoiler[/ISPOILER].
    This is a [ISPOILER=Spoiler]with a title[/ISPOILER].
    Risultato:
    This is a Simple spoiler .
    This is a with a title .
  • [CODE], [PHP], [HTML] - Codice di Programmazione

    Mostra il testo dei linguaggi di programmazione in una forma più adeguata a comprenderli, e mettendo in risalto dove possibile la sintassi del linguaggio stesso.
    Esempio:
    [CODE]esempio
    di codice[/CODE]
    [PHP]echo $hello . 'world';[/PHP]
    Risultato:
    Codice:
    esempio 
    di codice
    PHP:
    echo $hello . 'world';
  • [ICODE] - Inline programming code display

    Allows you to display code inline among normal post content. Syntax will not be highlighted.
    Esempio:
    Inline code blocks [ICODE]are a convenient way[/ICODE] of displaying code inline.
    Risultato:
    Inline code blocks are a convenient way of displaying code inline.
  • [TABLE], [TR], [TH], [TD] - Tables

    Use [TR] tags to start new rows inside a table tag. Use [TD] tags to start new cells inside row tags. Use [TH] to start new table header cells inside table rows.
    Esempio:
    [TABLE]
    [TR]
    [TH]Header 1[/TH]
    [TH]Header 2[/TH]
    [/TR]
    [TR]
    [TD]Cell 1 1[/TD]
    [TD]Cell 1 2[/TD]
    [/TR]
    [TR]
    [TD]Cell 2 1[/TD]
    [TD]Cell 2 2[/TD]
    [/TR]
    [/TABLE]
    Risultato:

    Header 1

    Header 2

    Cell 1 1

    Cell 1 2

    Cell 2 1

    Cell 2 2

  • [TH=vertical align], [TD=vertical align] - Tables (Advanced)

    Changes vertical align of table cells and table header cells.
    Esempio:
    [TABLE][TR]
    [TD]1
    2
    3[/TD][TD=top]Top[/TD]
    [TD=middle]Middle[/TD]
    [TD=bottom]Bottom[/TD]
    [/TR][/TABLE]
    Risultato:

    1
    2
    3

    Top

    Middle

    Bottom

  • [TABLE=class] - Tables (Advanced)

    Changes the appearance of tables depending on the classes chosen. Multiple classes can be used, separated by a space.
    Esempio:
    [TABLE=nofullwidth]
    [TR][TD]A table that is not full width[/TD][/TR][/TABLE]

    [TABLE=center-nofullwidth]
    [TR][TD]A centered table.[/TD][/TR][/TABLE]

    [TABLE=right-nofullwidth]
    [TR][TD]A right aligned table.[/TD][/TR][/TABLE]

    [TABLE=noborder]
    [TR][TD]A table with no border.[/TD][/TR][/TABLE]

    [TABLE=nobackground]
    [TR][TD]A table that[/TD][/TR][TR][TD]doesn't color rows differently[/TD][/TR][/TABLE]

    [TABLE=collapse]
    [TR][TD]A table that[/TD][TD] has non-equal width columns.[/TD][/TR][/TABLE]
    Risultato:

    A table that is not full width



    A centered table.



    A right aligned table.



    A table with no border.



    A table that

    doesn't color rows differently



    A table that

    has non-equal width columns.

  • [INDENT] - Testo identato

    Identa il testo incluso. E' possibile anche annidare più livelli di testo identato.
    Esempio:
    Testo normale
    [INDENT]Testo identato
    [INDENT]Testo identato annidato[/INDENT]
    [/INDENT]
    Risultato:
    Testo normale
    Testo identato
    Testo identato annidato​
  • [PLAIN] - Testo Semplice

    Disabilita l'interpretazione dei codici BB in modo che sia possibile far vedere i codici BB stessi senza che il testo venga modificato.
    Esempio:
    [PLAIN]Questo non è testo [B]in grassetto.[/B][/PLAIN]
    Risultato:
    Questo non è testo [B]in grassetto.[/B]
  • [ATTACH] - Inserimento di Allegati

    Inserisce un allegato nel punto specificato. Se l'allegato è un'immagine verrà visualizzata una miniatura oppure una versione in dimensioni originali. Normalmente si può cliccare sul pulsantino apposito che risiede nella toolbar dell'editor dei messaggi.
    Esempio:
    Miniatura: [ATTACH]123[/ATTACH]
    Dimensioni Originali: [ATTACH=full]123[/ATTACH]
    Risultato:
    Il contenuto dell'allegato dovrebbe apparire qui.
  • [HIDE], [HIDEREPLY], [HIDETHANKS], [HIDEPOSTS], [HIDEREPLYPOSTS] - Hide content from users

    Hide content from users depending on various circumstances. [HIDEREPLY] - Hides content until user has replied to the subject. [HIDETHANKS] - Hides content until user has liked the content. [HIDEREPLYTHANKS] - Hides content until user has replied to the subject or liked the content. [HIDEPOSTS] - Hides content until user has a certain number of posts. [HIDE] - Works like [HIDEREPLY].
    Esempio:
    [HIDE]You can view this content.[/HIDE]
    [HIDEREPLY]You can view this content.[/HIDEREPLY]
    [HIDETHANKS]You can view this content.[/HIDETHANKS]
    [HIDEREPLYTHANKS]You can view this content.[/HIDEREPLYTHANKS]
    [HIDEPOSTS]You can view this content.[/HIDEPOSTS]
    Risultato:
    You need to reply to this in order to see this content.
    You need to reply to this in order to see this content.
    You need to like this in order to view this content.
    You need to like or reply to this in order to see this content.
    You are not allowed to view this content.
  • [GALLERY=option] - Gallery embed

    BB code for displaying gallery media items and albums.
    Esempio:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
    Risultato:
    [GALLERY=media, X]Gallery BB Code[/GALLERY]
  • [IMG2X=option] - Image Resize BB Code

    Image with Custom Width and Auto Height
    Esempio:
    Image with Custom Width and Auto Height
    [img2x=500]URL of image[/img2x]
    500 being an example image width you set
    Risultato:
    Image with Custom Width and Auto Height

    500 being an example image width you set
Alto