BBCode ları forumda metin düzenlemek için kullanabileceğiniz tag lardır. Tag yapıları HTML ile büyük benzerlik göstermektedir. aşağıda kullanabileceğiniz BBCode taglarının bir listesi ve kullanım şekilleri bulunmaktadır.

Yöneticiler BBCode un kullanımını kısıtlayabilirler. Bunu anlamak için yeni bir konu postalarken ya da imzanızı düzenlerken sol taraftaki sayfa boşluğuna bakınız.

Metin Stili

  • [b]Kalın metin[/b] şu çıktıyı verir: Kalın metin
  • [u]Altıçizili metin[/u] şu çıktıyı verir: Altıçizili metin
  • [i]Eğik metin[/i] şu çıktıyı verir: Eğik metin
  • [color=#FF0000]Kırmızı metin[/color] şu çıktıyı verir: Kırmızı metin
  • [color=blue]Mavi metin[/color] şu çıktıyı verir: Mavi metin
  • [b][u]Bold, underlined text[/u][/b] şu çıktıyı verir: Bold, underlined text

Başka dokümanlara bağlantı oluşturabilir ya da aşağıdaki tag ları kullanarak e-posta gönderebilirsiniz:

Alintı yapabilmek için quote tagını kullanabilirsiniz.

  • [quote=James]Alıntı yapmak istediğim metin[/quote] produces a quote box citing the person being quoted.
    James mesaj::

    Alıntı yapmak istediğim metin

  • [quote]Alıntı yapmak istediğim metin[/quote] produces a bare quote box.

    Alıntı yapmak istediğim metin

When displaying source code you should make sure that you use the code tag. Text displayed with the code tag will use a monospaced font and will not be affected by other tags. Long items of code will cause the text to scroll.

  • [code]Örnek kod[/code] Örnek kod kutusu:
    Kod:
    Örnek kod
  • [code]This is a long piece of code. This is a long piece of code. This is a long piece of code. This is a long piece of code. This is a long piece of code.[/code] produces a scrolling code box.
    Kod:
    This is a long piece of code. This is a long piece of code. This is a long piece of code. This is a long piece of code. This is a long piece of code.

To create a list you can use the list tag. You can create 3 types of lists using the list tag.

  • [list][*]Example list item 1.[/*][*]Example list item 2.[/*][*]Example list item 3.[/*][/list] produces a bulleted list.
    • Example list item 1.
    • Example list item 2.
    • Example list item 3.
  • [list=1][*]Example list item 1.[/*][*]Example list item 2.[/*][*]Example list item 3.[/*][/list] produces numbered list.
    1. Example list item 1.
    2. Example list item 2.
    3. Example list item 3.
  • [list=a][*]Example list item 1.[/*][*]Example list item 2.[/*][*]Example list item 3.[/*][/list] produces alphabetically labelled list.
    1. Example list item 1.
    2. Example list item 2.
    3. Example list item 3.