Functions/Public/th.ps1

Function Th {
<#
    .LINK
    https://github.com/Stephanevg/PSHTML
#>

    Param(
        [String]
        $Content
    )

    @"
    <th>$Content</th>
"@



}