Skip to content

Commit

Permalink
feat: Script Properties should be in separate files ( Fixes #203 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Oct 13, 2024
1 parent 39151b1 commit 6ff46cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Extensions/HelpOut.SaveMarkdownHelp.ExtendedTypes.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ foreach ($extendedType in $extendedTypeNames) {

$TopicPathSegments = @(
$extendedType -split $punctuationNotDashOrUnderscore
$member.Name -replace $replaceMostPunctuation
if ($getSetNothing) {
$getSetNothing + ($member.Name -replace $replaceMostPunctuation)
} else {
$member.Name -replace $replaceMostPunctuation
}
)
$etsDocPath = Join-Path $outputPath "$(
$TopicPathSegments -join [IO.Path]::DirectorySeparatorChar
Expand Down

0 comments on commit 6ff46cb

Please sign in to comment.