Add a new TBody block.
[ScriptBlock]TextBlock A scriptblock rendering the table body contents. Mandatory
Create a Markdown document with the contents | one cell |
New-Document { Table TBody { { TR { TD "one cell" }}}}Create an Html document with the contents
<table class="table table-striped">
<tbody>
<tr><td>one cell</td><tr></tbody></table>
New-Document -Type Html/Bootstrap { Table { TR { TD "one cell" }}}