PowerShell / platyPS

Write PowerShell External Help in Markdown
MIT License
782 stars 155 forks source link

Make Path and LiteralPath parameters work like they do for Item cmdlets #696

Open sdwheeler opened 1 month ago

sdwheeler commented 1 month ago

Summary of the new feature / enhancement

The Path paramter needs to allow pipeline input and the LiteralPath parameter need aliases and pipeline input. We should match the configuration of the Item cmdlets.

-Path

Aliases : {}
ValueFromPipeline               : True
ValueFromPipelineByPropertyName : True

-LiteralPath

Aliases : {PSPath, LP}
ValueFromPipeline               : False
ValueFromPipelineByPropertyName : True

Proposed technical implementation details (optional)

The current implementation of these parameters does not match.