This does the same thing as {{inflection-table-block}}
, but is designed to be used as a wrapper for raw table content, in partnership with {{inflection-table-block-bottom}}
.
The following works:
{{inflection-table-block|
{{some template|...}}
{{some template|...}}
{{some template|...}}
}}
The following doesn't work, because MediaWiki interprets the pipes (part of the table syntax) as delineating separate parameters to {{inflection-table-block}}
:
{{inflection-table-block|
{{inflection-table-top}}
! colspan="2" | heading
|-
| test
| another
{{inflection-table-bottom}}
...
}}
Instead, do the following:
{{inflection-table-block-top}}
{{inflection-table-top}}
! colspan="2" | heading
|-
| test
| another
{{inflection-table-bottom}}
...
{{inflection-table-block-bottom}}