Bulletin board code

From Online Manual

Jump to: navigation, search
This page is a translated version of a page Bulletin board code and the translation is 12% complete and up to date.
Outdated translations are marked like this.

Other languages: Ελληνικά 11% • English 100% • 0% • Français 100% • Italiano 11% • Nederlands 100% • ‪Norsk (bokmål)‬ 84% • Polski 100% • 0% • Srpski (latinica) 100% • Türkçe 12%

Bulletin board codes veya BBCodeları SMF içindeki iletileri düzenlemenin bir yoludur ve diğer çevrim için mekanlarıda. İleti sayfası içindeki butonları açıklamaları için, bakınız Basic Bulletin Board Codes. Bu makale, iç içe olan önemli kavramları açıklar.

BBCode yerleştirme

Bir BBCode'un genel formatı üç parçadadır, bir açılış etiketi, içindeki içerik ve bir kapanış etiketi, aşağıda gösterildiği gibi:

Bold and italic text

You can place one BBCode tag inside another as long as the child tag is closed before the parent tag. For example, the correct way to make bold and italic text is:

[b][i]bold & italic text[/i][/b]
This is shown more easily when the tags are indented:
[b]
    [i]
        bold & italic text
    [/i]
[/b]

The next example is incorrectly nested, which is easily shown with indented tags:

[b][i]bold & italic text[/b][/i]
[b]
    [i]
        bold & italic text
[/b]
    [/i]

See Also