(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 1: | Line 1: | ||
<div class="mw-translate-fuzzy"> | {{Other languages}}<div class="mw-translate-fuzzy"> | ||
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. | 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. | ||
</div> | </div> | ||
<div class="mw-translate-fuzzy"> | |||
BBCode yerleştirme | BBCode yerleştirme | ||
</div>= | </div> | ||
<div class="mw-translate-fuzzy"> | |||
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: | 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: | ||
</div> | |||
===Bold and italic text=== | ===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: | |||
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: | |||
{{code|[b][i]bold & italic text[/i][/b]}} | |||
This is shown more easily when the tags are indented:{{code|[b] | |||
[i] | [i] | ||
bold & italic text | bold & italic text | ||
[/i] | [/i] | ||
[/b]}}The next example is incorrectly nested, which is easily shown with indented tags: | [/b]}} | ||
The next example is incorrectly nested, which is easily shown with indented tags: | |||
{{code|[b][i]bold & italic text[/b][/i] | {{code|[b][i]bold & italic text[/b][/i] | ||
[b] | [b] | ||
[i] | [i] | ||
Line 27: | Line 34: | ||
* [[Basic bulletin board codes]] | * [[Basic bulletin board codes]] | ||
* [[Alphabetical list of all bulletin board codes]] | * [[Alphabetical list of all bulletin board codes]] | ||
[[Category:About Bulletin Board Code]] | [[Category:About Bulletin Board Code]] |
Revision as of 14:54, 29 July 2011
Languages | English · Deutsch · Ελληνικά · español · français · italiano · Nederlands · norsk · polski · русский · srpski (latinica) · svenska · Türkçe |
---|
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]