[CmdletBinding()] Param( [Parameter(Position=0, Mandatory=$true)][string]$MarkdownNoticePath, [Parameter(Position=1, Mandatory=$true)][string]$OutputPath ) @" Third-Party Notices $(ConvertFrom-Markdown $MarkdownNoticePath | Select -Expand Html) "@ | Out-File -Encoding UTF-8 $OutputPath -Force