Logins may be showing incorrect profile information. Please email psgadmin at microsoft.com for support.
Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Silk
0.2.0
Functions/Format-ForHtml.ps1
filter
Format-ForHtml
{
<#
.SYNOPSIS
Encodes text for HTML.
#>
if
(
$_
)
{
[Web.HttpUtility]
::
HtmlEncode
(
$_
)
}
}