Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Silk
0.2.0
Functions/Out-HtmlString.ps1
filter
Out-HtmlString
{
<#
.SYNOPSIS
Writes a string out to the pipeline, trimming whitespace.
#>
$_
|
Out-String
-Width
9999
|
ForEach-Object
{
$_
.
Trim
(
)
}
|
Where-Object
{
$_
}
}