English Deutsch

BB code

explanation

BB code is a markup language based on HTML. With it you can format your messages in a similar way as it is possible with HTML. However, due to the simpler syntax, it is impossible to destroy the layout of the page itself. Whether you can use BB code can be restricted by the administrator for each individual forum - so check the forum rules before posting a new post.

Below is a list of BB code tags that you can use to format your post.

BB code list

  1. Bold / Italic / Underline
  2. Color
  3. size
  4. Font
  5. Point out
  6. Left aligned / Right aligned / Centered
  7. indented
  8. Create email links
  9. create hyperlinks
  10. reference to a topic
  11. Reference to a post
  12. Unordered Lists / Ordered Lists
  13. graphics
  14. Videos
  15. --
  16. PHP code
  17. HTML code
  18. Quote
  19. Prevent BB code conversion
  20. Appendix
  21. Iframe video planet of apes
  22. iframe1
  23. Iframe Encharmed Quattro
  24. Img Bonus Terms
  25. image center
  26. Image links
  27. img right
  28. Neteller feeds
  29. Playtime rating
  30. YouTube
Incorrect use of BB code:
  • [Url] www.example.net [/ Url] - There must be no space between the tags in brackets and the text to be formatted.
  • [Email]myname@domain.com[Email] - the closing tags must have a slash before the tag name ([/E-mail])

Bold / Italic / Underline

With the [b], [i] and [u] tags you can make text bold, italic and underlined.

    • [B]text[/B]
    • [I]text[/ I]
    • [at]text[/at]
    Syntax
    • [b]this text is bold[/b]
    • [i]this text is in italics[/i]
    • [u]this text is underlined[/u]
    Example
    • this text is bold
    • this text is in italics
    • this text is underlined
    output

Color

With the [color] tag the text color can be changed.

  • [color =Option]text[/color]
    Syntax
  • [color=blue]this text is blue[/color]
    Example
  • this text is blue
    output

size

The [size] tag can be used to change the text size.

  • [size=Option]text[/ size]
    Syntax
  • [size=+2]this text is two sizes larger than normal[/size]
    Example
  • this text is two sizes larger than normal
    output

Font

The [font] tag can be used to change the font of your text.

  • [font=Option]text[/ font]
    Syntax
  • [font=courier]this text uses the Courier font[/font]
    Example
  • this text uses the Courier font
    output

Left aligned / Right aligned / Centered

With the [left], [right] and [center] tags you can set the alignment of your text.

    • [Left]text[/ left]
    • [Center]text[/ Center]
    • [right]text[/ right]
    Syntax
    • [left]this text is left justified[/left]
    • [center]this text is centered[/center]
    • [right]this text is right-aligned[/right]
    Example
  • this text is left-aligned
    this text is centered
    this text is right-aligned
    output

indented

With the [indent] tag you can indent your text.

  • [indent]text[/ indent]
    Syntax
  • [indent]this text is indented[/indent]
    Example
  • this text is indented
    output

Create email links

The e-mail tag enables linking of e-mail addresses. You can also specify a name for the link with an additional parameter.

    • [Email]text[/E-mail]
    • [email=Option]text[/E-mail]
    Syntax
    • [email]j.doe@example.com[/email]
    • [email=j.doe@example.com]Email me[/email]
    Example
  • output

create hyperlinks

The [url] tag allows you to link to other websites and files. You can also specify a name for the link with an additional parameter.

reference to a topic

The [thread] tag allows linking to a specific topic using the thread ID. You can also specify a name for the link with an additional parameter.

Reference to a post

The [post] tag allows you to link to specific posts simply by specifying the post ID of the post. If you use the post ID as a parameter, you can also give the link a label.

Unordered Lists

You can create unordered lists with the simple [list] tag. Each entry in this list begins with the [*] tag.

  • [List]text[/ List]
    Syntax
  • [List]
    [*]First entry
    [*]second entry
    [/ List]
    Example
    • First entry
    • second entry
    output

Ordered Lists

With the [list] tag extended by a parameter, you can create ordered lists. This parameter can be a 1 (numbered list), a or A (alphabetical list of lowercase or uppercase letters), or i or I (list of lowercase or uppercase roman numerals).

  • [list=Option]text[/ List]
    Syntax
  • [list = 1]
    [*]First entry
    [*]second entry
    [/ List]

    [list=A]
    [*]First entry
    [*]second entry
    [/ List]

    [list = a]
    [*]First entry
    [*]second entry
    [/ List]
    Example
    1. First entry
    2. second entry
    1. First entry
    2. second entry
    1. First entry
    2. second entry
    output

graphics

With the [img] tag you can include graphics in your posts. You can also combine this BB code with the [url] tag and thus display a graphic as a link.

  • [Img]text[/ Img]
    Syntax
    • [img]https://www.playtime-forum.info/forum/images/statusicon/forum_new-48.png[/img] (No link)
    • [url=http://www.example.com] [img]https://www.playtime-forum.info/forum/images/statusicon/forum_new-48.png[/img] [/url] (Link)
    Example
    • (no link)
    • (Link)
    output

Videos

With the [video] tag you can embed videos from different video sources in your posts. These include, for example, YouTube, Google, Metacafe and Facebook.

  • [Video]text[/ Video]
    Syntax
    • [video=youtube;eOUq4Z6R7xI]http://www.youtube.com/watch?v=eOUq4Z6R7xI[/video]
    Example
    output

--

The [code] tag displays the text in a non-proportional font (monospace font) and thus preserves text formatting, such as spaces.

  • [Code]text[/ Code]
    Syntax
  • [Code]

    <!--
        alert("Hello world!");
    // ->

    [/ Code]
    Example
  • code:
    
    
    output

PHP code

The [php] tag works the same as the [code] tag, but additionally highlights certain keywords (syntax highlighting). Although it was developed for PHP, it may also display other C-like languages ​​correctly.

  • [Php]text[/ Php]
    Syntax
  • [Php]
    $myvar = 'Hello World!';
    for ($i = 0; \$i < 10; \$i++)
    {
        echo $myvar . "\n";
    }
    [/ Php]
    Example
  • PHP Code:
    $myvar 'Hello World!';
    for (
    $i 0$i 10$i++)
    {
        echo 
    $myvar "\n";

    output

HTML code

The [html] tag enables color highlighting (syntax highlighting) of HTML code.

  • [html]text[/ Html]
    Syntax
  • [html]

    testing
    [/ Html]
    Example
  • HTML code:
    <img src="image.gif" alt ="image" />
    "testing.html" target ="_blank">Testing
    output

Quote

With the [quote] tag you can quote texts of foreign origin.

    • [Quote]Quote[/ Quote]
    • [quote =User name]text[/ Quote]
    Syntax
    • [quote]Lorem ipsum dolor sit amet[/quote]
    • [quote=John Doe]Lorem ipsum dolor sit amet[/quote]
    • [quote=John Doe;17367]Lorem ipsum dolor sit amet[/quote]
    Example
    • Lorem ipsum dolor sit amet
    • Quote Posted by John Doe
      Lorem ipsum dolor sit amet
    • Quote Posted by John Doe View Post
      Lorem ipsum dolor sit amet
    output

Point out

With the [highlight] tag, text passages can be highlighted.

  • Syntax
    [Highlight]text[/ Highlight]
  • Example
    [highlight]this text is highlighted[/highlight]
  • output
    this text is highlighted

Prevent BB code conversion

The [noparse] tag can be used to prevent BB code from being converted to text formatting within the [noparse] tag.

  • [no parse][b]Text[/b][/noparse]
    Syntax
  • [noparse][b]Lorem ipsum dolor sit amet[/b][/noparse]
    Example
  • [b]Lorem ipsum dolor sit amet[/b]
    output

Appendix

The [attach] tag allows attachments to be placed anywhere in a post. However, this only applies to attachments attached to this post.

  • [attach]attachmentid[/attach]
    Syntax
  • [Attach] 12345 [/ attach]
    Example
  • output

Iframe video planet of apes

  • [iframe]text[/iframe]
    Syntax
  • [iframe][/iframe]
    Example
  • output

iframe1

  • [iframe1]text[/iframe1]
    Syntax
  • [iframe1][/iframe1]
    Example
  • output

Iframe Encharmed Quattro

  • [iframe3]text[/iframe3]
    Syntax
  • [iframe3][/iframe3]
    Example
  • output

Img Bonus Terms

  • [img_b]text[/img_b]
    Syntax
  • img_b
    Example
  • img_b
    output

image center

  • [img_c]text[/img_c]
    Syntax
  • image center
    Example
  • image center
    output

Image links

  • [img_l]text[/img_l]
    Syntax
  • Image links
    Example
  • Image links
    output

img right

  • [img_r]text[/img_r]
    Syntax
  • ImageRight
    Example
  • ImageRight
    output

Neteller feeds

  • [Neteller]text[/Neteller]
    Syntax
  • Neteller
    Example
  • Neteller
    output

Playtime rating

Playtime rating

  • [ot]text[/ ot]
    Syntax
  • Playtime rating
    Example
  • Playtime rating
    output

YouTube

  • [Youtube]text[/ Youtube]
    Syntax
  • Youtube videos
    Example
  • Youtube videos
    output