Skip to content

Commit

Permalink
Merge pull request MicrosoftDocs#8646 from sdwheeler/sdw-platyps
Browse files Browse the repository at this point in the history
Fix encoding parameter in example
  • Loading branch information
michaeltlombardi committed Mar 10, 2022
2 parents d946fe4 + 0824288 commit 633eb38
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Using PlatyPS is the fast and efficient way to create XML-based help.
ms.date: 07/21/2020
ms.date: 03/10/2022
title: Create XML-based help using PlatyPS
---
# Create XML-based help using PlatyPS
Expand Down Expand Up @@ -66,7 +66,7 @@ The following flowchart outlines the process for creating or updating PowerShell
AlphabeticParamsOrder = $true
WithModulePage = $true
ExcludeDontShow = $true
Encoding = 'UTF8BOM'
Encoding = [System.Text.Encoding]::UTF8
}
New-MarkdownHelp @parameters
Expand Down Expand Up @@ -109,7 +109,7 @@ modules that have new cmdlets, new parameters, or parameters that have changed.
UpdateInputOutput = $true
ExcludeDontShow = $true
LogPath = <path to store log file>
Encoding = 'UTF8BOM'
Encoding = [System.Text.Encoding]::UTF8
}
Update-MarkdownHelpModule @parameters
```
Expand Down

0 comments on commit 633eb38

Please sign in to comment.