Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Escape
0.1
Types/Escape.Sequence/html.ps1
<#
.SYNOPSIS
.DESCRIPTION
.EXAMPLE
./html.escape.ps1 "<escape this tag>"
#>
param
(
[string]
$Content
=
"$($this.Input)"
)
[Web.HttpUtility]
::
HtmlEncode
(
$Content
)