Sean Wheeler
Sean Wheeler
Please provide an example command that has the list problem or provide steps to reproduce the problem. I am not finding an example. As for the markdown markup (bold, code...
Copied example from your script file here for easier access. ```powershell $ModuleName = 'SayHello' New-Module -Name $ModuleName -ScriptBlock { function get-hello { 'Hello' } } | Import-Module Get-Command -Module $ModuleName...
> Is it documented somewhere? It makes reading the help contents harder. Or do you plan to change the rendering of help contents also? No changes planned. This is the...
Please provide examples of your comment-based help, the problematic output, and the expected output.
`__AllParameterSets` is the name of the parameter set. This is by design. The code block is a representation of the syntax, not PowerShell code. There is no code fence label...
PowerShell parses the comment-based help and create help objects that PlatyPS uses. Scenario 1 - .LINK present but left empty This is expected behavior. ```powershell Get-Help Test-Cmdlet | select relatedLinks...
Interesting. The design for `Update-MarkdownHelp` is to not remove INPUTS or OUTPUTS that exist because an author may have added the information for cmdlets that do properly report their outputs....
This is by design. The default value is not discoverable. ``` PS> (gcm Get-Foo).Parameters.Name Name : Name ParameterType : System.String ParameterSets : {[__AllParameterSets, System.Management.Automation.ParameterSetMetadata]} IsDynamic : False Aliases : {}...
The default value is not discoverable. However, the MAML that is being created is not quite right. Need to compare the maml from the old and new versions of PlatyPS....
This is a bug that we need to fix post GA. This needs more investigation.