• <<< The forum is still in the preparatory phase! >>>

BB kodovi

  • [B], [I], [U], [S] - bold, Iskošeno, Podvučeno, Struck-through

    Basic text formatting for the wrapped text.
    Primer:
    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.
    Rezultat:
    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, Boja teksta, Font, Size

    Advanced text formatting options for wrapped text.
    Primer:
    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.
    Rezultat:
    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.
    Primer:
    This is [SUB]subscript[/SUB] text.
    This is [SUP]superscript[/SUP] text.
    Rezultat:
    This is subscript text.
    This is superscript text.
  • [URL], [EMAIL] - Povezivanje

    Kreira se veza ka cilјu pomoću umotanog teksta.
    Primer:
    [URL]https://www.primer.com[/URL]
    [EMAIL]primer@primer.com[/EMAIL]
    Rezultat:
  • [URL=link], [EMAIL=address] - Povezivanje (Napredno)

    Linkovi umotani u tekst ka određenoj Veb stranici ili imejl adresi.
    Primer:
    [URL=https://www.primer.com]Idite na primer.com[/URL]
    [EMAIL=ime@primer.com]Kontaktirajte me[/EMAIL]
    Rezultat:
  • [USER=ID] - Linkovanje profila

    Link ka korisničkom profilu. On se automatski umeće kada korisnika označite.
    Primer:
    [USER=1]Korisničko ime[/USER]
    Rezultat:
  • [IMG] - Slika

    Prikazivanje slike, korišćenjem umotanog teksta kao URL adrese.
    Primer:
    [IMG]https://crosatelite.com/styles/xentr/exclusive_dark/xenforo/logo.png[/IMG]
    Rezultat:
    logo.png
  • [VIDEO] - Video

    Displays a video, using the wrapped text as the URL.
    Primer:
    [VIDEO]http://crosatelite.com/styles/editor-manager/missing-video.mp3[/VIDEO]

    [VIDEO='width:300']http://crosatelite.com/styles/editor-manager/missing-video.mp3[/VIDEO]
    Rezultat:


  • [AUDIO] - Audio

    Displays an audio player, using the wrapped text as URL.
    Primer:
    [AUDIO]http://crosatelite.com/styles/editor-manager/missing-audio.mp3[/AUDIO]
    Rezultat:
  • [MEDIA=sajt] - Dodavanje videa

    Ubacuje medije sa odobrenih sajtova u Vašu poruku. Preporučuje se da koristite dugme za ubacivanje iz galerije u traci sa alatkama za uređivanje.
    Odobreni veb sajtovi: Apple Music, Dailymotion, Facebook, Flickr, Giphy, Imgur, Liveleak, Metacafe, Pinterest, Reddit, SoundCloud, Spotify, Tumblr, Twitch, Twitter, Vimeo, YouTube
    Primer:
    [MEDIA=youtube]oHg5SJYRHA0[/MEDIA]
    Rezultat:
    Ugrađeni YouTube plejer pojaviće se ovde.
  • [LIST] - Liste

    Prikazivanje nenumerisanih ili numerisanih lista.
    Primer:
    [LIST]
    [*]Nenumerisano 1
    [*]Nenumerisano 2
    [/LIST]

    [LIST=1]
    [*]Numerisano 1
    [*]Numerisano 2
    [/LIST]
    Rezultat:
    • Nenumerisano 1
    • Nenumerisano 2

    1. Numerisano 1
    2. Numerisano 2
  • [LEFT], [RIGHT], [CENTER], [JUSTIFY] - Text alignment

    Promena poravnanja umotanog teksta.
    Primer:
    [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]
    Rezultat:
    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] - Citiran tekst

    Prikazuje tekst koji je citiran iz drugog izvora (poruke). Takođe, možete odrediti i ime autora teksta.
    Primer:
    [QUOTE]Citiran tekst[/QUOTE] [QUOTE=osoba A]Nešto je rekla[/QUOTE]
    Rezultat:
    osoba A je napisao(la):
    Nešto je rekla
  • [SPOILER] - Tekst sa spojlerima

    Sakrivanje teksta sa spojlerima tako da morate kliknuti na dugme Spojler kako biste videli tekst.
    Primer:
    [SPOILER]Jednostavan spojler[/SPOILER]
    [SPOILER=Spoiler Title]Spojler sa naslovom[/SPOILER]
    Rezultat:
    Jednostavan spojler
    Spojler sa naslovom
  • [ISPOILER] - Inline text containing spoilers

    Sakrivanje teksta sa spojlerima tako da morate kliknuti na dugme Spojler kako biste videli tekst.
    Primer:
    You have to click the following [ISPOILER]word[/ISPOILER] to see the content.
    Rezultat:
    You have to click the following word to see the content.
  • [CODE] - Prikazivanje programskog koda

    Prikazivanje teksta u jednom od nekoliko programskih jezika, naglašavajući sintaksu gde je to moguće.
    Primer:
    Opšti kod:
    [CODE]General
    code[/CODE]

    Bogat kod:
    [CODE=rich][COLOR=red]Rich[/COLOR]
    code[/CODE]

    PHP kod:
    [CODE=php]echo $hello . ' world';[/CODE]

    JS kod:
    [CODE=js]var hello = 'world';[/CODE]
    Rezultat:
    Opšti kod:
    Kod:
    General
    code

    Bogat kod:
    Rich (BB code):
    Rich
    code

    PHP kod:
    PHP:
    echo $hello . ' world';

    JS kod:
    Kod:
    var hello = 'world';
  • [ICODE] - Prikazivanje inlajn programskog koda

    Omogućava prikazivanje umetnutog koda između normalnog tekstualnog sadržaja. Sintaksa neće biti označena.
    Primer:
    Inlajn kod blokovi [ICODE]su zgodan način[/ICODE] za prikazivanje umetnutog koda.
    Rezultat:
    Inlajn kod blokovi su zgodan način za prikazivanje umetnutog koda.
  • [TABLE] - Tables

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

    Advanced table styling.
    Primer:
    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]
    Rezultat:
    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.
    Primer:
    [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.
    Rezultat:

    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] - Uvlačenje pasusa

    Uvlačenje pasusa u tekstu.
    Primer:
    Običan pasus
    [INDENT]Uvučen pasus[/INDENT]
    [INDENT=2]Još više uvučen pasus[/INDENT]
    Rezultat:
    Običan pasus
    Uvučen pasus​
    Još više uvučen pasus​
  • [PLAIN] - Običan tekst

    Onemogućava BB kodu prevođenje na umotan tekst.
    Primer:
    [PLAIN]Ovo nije [B]podeblјan[/B] tekst.[/PLAIN]
    Rezultat:
    Ovo nije [B]podeblјan[/B] tekst.
  • [ATTACH] - Dodavanje datoteke

    Dodavanje datoteke na određenom mestu. Ako je datoteka slika, može se dodati u punoj veličini ili kao minijatura, klikom na odgovarajuće dugme.
    Primer:
    Minijatura: [ATTACH]123[/ATTACH]
    Puna veličina: [ATTACH=full]123[/ATTACH]
    Rezultat:
    Sadržaj priloga pojaviće se ovde.
  • [HIDE], [HIDEPOSTS], [HIDEREPLY], [HIDETHANKS], [HIDEREPLYTHANKS], [HIDEGROUP] - Hide content

    Hides wrapped text until certain conditions are fullfilled.
    Primer:
    [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]
    Rezultat:
    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: Administrative
shape1
shape2
shape3
shape4
shape7
shape8
Top