틀:Block bug documentation: 두 판 사이의 차이

이삭위키
둘러보기로 이동 검색으로 이동
(br)
 
잔글 (판 1개를 가져왔습니다)
 
(차이 없음)

2023년 4월 25일 (화) 14:46 기준 최신판

틀:Notice

If the block-formatted content begins with a list (or any other wikimarkup that is dependent upon a specific markup character being at the beginning of a line) then due to a bug in MediaWiki, a <nowiki /> and a new line must exist before the list (or whatever) starts. Compare:

  code result
FAIL
 {{ Block bug documentation|1=
 *Firstly, ...
 *Secondly, ...
 *Thirdly, ...
 }}
틀:Error
Works as intended
 {{ Block bug documentation|1=<nowiki />
*Firstly, ... *Secondly, ... *Thirdly, ... }}
틀:Error

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 noinclude – 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.