Template:Row
Jump to navigation
Jump to search
A clean way to make a table row with up to 10 elements, especially useful for passing a row as a parameter.
{{Row|cell 1|cell 2|etc up to 10}}
Example Usage
{| class="wikitable"
!A
!B
!C
!D
{{Row|1|| |3|4}}
{{Row|cell 1|cell 2|cell 3|etc}}
|}
The above will result in the following:
A | B | C | D |
---|---|---|---|
1 | 3 | 4 | |
cell 1 | cell 2 | cell 3 | etc |