Lompat ke isi

Cèṭa'an:Block bug documentation

Ḍâri Wikipèḍia bhâsa Madhurâ, lombhung pangataowan mardhika
Rèvisi sajjhek 14 Novèmber 2024 12.38 bi' Munajad.MH (kanḍhâ | dhurrun) (←Membuat halaman berisi '<noinclude>{{notice|Ignore any errors showing below; they do not appear when this snippet is transcluded (nor does this message box). This doc snippet's output only works when it's transcluded into the context of a specific template, e.g. at Template:Block indent/doc}} </noinclude>If the block-formatted content uses a ''named'' parameter (including {{para|1}}) and begins with a list (or any other wikimarkup that is dependent upon a specific markup character...')
(bhidhâ) ← Rèvisi sabelluna | Rèvisi jângkènè (bhidhâ) | Rèvisi lebbi anyar → (bhidhâ)

TemplateStyles' src attribute must not be empty.

If the block-formatted content uses a named parameter (including |1=) and begins with a list (or any other wikimarkup that is dependent upon a specific markup character being at the beginning of a line), because MediaWiki behavior is to strip whitespace from named parameters, a <nowiki /> and a new line must exist before the list (or whatever) starts. This no longer affects unnamed parameters. Compare:

  code result
Works as intended {{Block bug documentation|
*Firstly, ...
*Secondly, ...
*Thirdly, ...
}}
This output only works when this doc snippet is transcluded.
FAIL {{Block bug documentation|1=
*Firstly, ...
*Secondly, ...
*Thirdly, ...
}}
This output only works when this doc snippet is transcluded.
Works as intended {{Block bug documentation|1=<nowiki />
*Firstly, ...
*Secondly, ...
*Thirdly, ...
}}
This output only works when this doc snippet is transcluded.

To embed a table in block markup like this, the block template's content parameter must be named or numbered and include the self-closing nowiki – as in |1=<nowiki /> – then every | character in the table markup must be escaped with {{!}}. An alternative is to use explicit HTML <table>, <tr>, <th>, and <td> markup.