(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
Line 8: | Line 8: | ||
==Nesting BBCodes== | ==Nesting BBCodes== | ||
<div class="mw-translate-fuzzy"> | |||
De algemene format van een BBCode heeft drie delen, een tag om te openen, de inhoud en de tag om te sluiten. zoals hier onder getoond: | De algemene format van een BBCode heeft drie delen, een tag om te openen, de inhoud en de tag om te sluiten. zoals hier onder getoond: | ||
{{code|[open] inhoud [/close] | {{code|[open] inhoud [/close] | ||
[b] Vette tekst [/b]}} | [b] Vette tekst [/b]}} | ||
</div> | |||
<div class="mw-translate-fuzzy"> | <div class="mw-translate-fuzzy"> | ||
Line 31: | Line 33: | ||
</div> | </div> | ||
The next example is incorrectly nested | The next example is incorrectly nested. The last two lines show that the parent tag <nowiki>[b]</nowiki> was closed before the child tag <nowiki>[i]</nowiki>. | ||
{{code|[b][i]bold & italic text[/b][/i] | {{code|[b][i]bold & italic text[/b][/i] | ||
[b] | [b] | ||
Line 43: | Line 45: | ||
</div> | </div> | ||
The order in which tags are nested is important when text-formatting tags such as ''size'', ''bold'', or ''italic'' are paired with the text-alignment tags ''center'', ''left'', ''right'', and ''pre''. Formatting tags must be placed inside alignment tags. For example, for the size tag to change the font, it must be placed as follows: | |||
{{code|<nowiki>[center][size=36pt][b][u]text[/u][/b][/size][/center]</nowiki>}} | {{code|<nowiki>[center][size=36pt][b][u]text[/u][/b][/size][/center]</nowiki>}} |
Revision as of 06:50, 4 October 2013
Languages | English · Deutsch · Ελληνικά · español · français · italiano · Nederlands · norsk · polski · русский · srpski (latinica) · svenska · Türkçe |
---|
Bulletin Board codes of BBCodes zijn een manier om posten aan te passen in SMF en op verschillende plaatsen op het internet. Als voorbeeld van de knoppen in de posten pagina, zie Basic Bulletin Board Codes. Dit artikel zal het belangrijke concept van nesting uitleggen.
Nesting BBCodes
De algemene format van een BBCode heeft drie delen, een tag om te openen, de inhoud en de tag om te sluiten. zoals hier onder getoond:
[open] inhoud [/close] [b] Vette tekst [/b]
Vette en Italic tekst
Je kan een BBCode plaatsen in een andere zolang the child tag gesloten is voor de hoofd tag. Bijvoorbeeld, De juiste manier om vette en italic tekst te maken is:
[b][i]bold & italic tekst[/i][/b]
[i][b]bold & italic text[/b][/i]
[b] [i] bold & italic tekst [/i] [/b]
The next example is incorrectly nested. The last two lines show that the parent tag [b] was closed before the child tag [i].
[b][i]bold & italic text[/b][/i] [b] [i] bold & italic text [/b] [/i]
Zie ook
The order in which tags are nested is important when text-formatting tags such as size, bold, or italic are paired with the text-alignment tags center, left, right, and pre. Formatting tags must be placed inside alignment tags. For example, for the size tag to change the font, it must be placed as follows:
[center][size=36pt][b][u]text[/u][/b][/size][/center]
Nesting the size tags as per the example below will result in this tag not working:
[size=36pt][center][b][u]text[/u][/b][/center][/size]