ps/Modules/Cole.PowerShell.Developer/Public/Format-XML.ps1

14 lines
446 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function Format-XML {
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline=$true,Mandatory=$true)]
[string]$Xmlcontent
)
$xmldoc = New-Object System.Xml.XmlDocument
$xmldoc.LoadXml($Xmlcontent)
$sw = New-Object System.IO.StringWriter
$writer = New-Object System.Xml.XmlTextwriter($sw)
$writer.Formatting = [System.XML.Formatting]::Indented
$xmldoc.WriteContentTo($writer)
$sw.ToString()
}