@@ -304,6 +304,7 @@ function Get-MarkdownMetadata
304304 ValueFromPipelineByPropertyName = $true ,
305305 Position = 1 ,
306306 ParameterSetName = " FromPath" )]
307+ [SupportsWildcards ()]
307308 [string []]$Path ,
308309
309310 [Parameter (Mandatory = $true ,
@@ -334,6 +335,7 @@ function Update-MarkdownHelp
334335 param (
335336 [Parameter (Mandatory = $true ,
336337 ValueFromPipeline = $true )]
338+ [SupportsWildcards ()]
337339 [string []]$Path ,
338340
339341 [System.Text.Encoding ]$Encoding = $script :UTF8_NO_BOM ,
@@ -429,6 +431,7 @@ function Merge-MarkdownHelp
429431 param (
430432 [Parameter (Mandatory = $true ,
431433 ValueFromPipeline = $true )]
434+ [SupportsWildcards ()]
432435 [string []]$Path ,
433436
434437 [Parameter (Mandatory = $true )]
@@ -534,6 +537,7 @@ function Update-MarkdownHelpModule
534537 param (
535538 [Parameter (Mandatory = $true ,
536539 ValueFromPipeline = $true )]
540+ [SupportsWildcards ()]
537541 [string []]$Path ,
538542
539543 [System.Text.Encoding ]$Encoding = $script :UTF8_NO_BOM ,
@@ -664,6 +668,7 @@ function New-ExternalHelp
664668 Position = 1 ,
665669 ValueFromPipeline = $true ,
666670 ValueFromPipelineByPropertyName = $true )]
671+ [SupportsWildcards ()]
667672 [string []]$Path ,
668673
669674 [Parameter (Mandatory = $true )]
@@ -794,6 +799,7 @@ function Get-HelpPreview
794799 [Parameter (Mandatory = $true ,
795800 ValueFromPipeline = $true ,
796801 Position = 1 )]
802+ [SupportsWildcards ()]
797803 [string []]$Path ,
798804
799805 [switch ]$ConvertNotesToList ,
@@ -1279,6 +1285,7 @@ function GetMarkdownFilesFromPath
12791285 [CmdletBinding ()]
12801286 param (
12811287 [Parameter (Mandatory = $true )]
1288+ [SupportsWildcards ()]
12821289 [string []]$Path ,
12831290
12841291 [switch ]$IncludeModulePage
0 commit comments