Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 570 Bytes

File metadata and controls

31 lines (21 loc) · 570 Bytes

New-TableBody

Add a new TBody block.

Parameters

Parameter Set 1

  • [ScriptBlock] TextBlock A scriptblock rendering the table body contents. Mandatory

Examples

Example 1

Create a Markdown document with the contents | one cell |

New-Document { Table TBody { { TR { TD "one cell" }}}}

Example 2

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" }}}