platyPS icon indicating copy to clipboard operation
platyPS copied to clipboard

Write PowerShell External Help in Markdown

Results 132 platyPS issues
Sort by recently updated
recently updated
newest added

In this simple module, I added a new function and updated a couple of parameter attributes. I made sure to import the module manually in advance. These errors should be...

Help wanted
Needs-Investigation

In [her naming help video](https://www.youtube.com/watch?v=swrIQ2Bx-M0) @juneb is pointing out problems with cdxml help. Essentially, we should generate a better names in `GetHelpFileName` for cdxml. https://github.com/PowerShell/platyPS/blob/f24b9447afe201bc4240d8ccfda2c06bd3895b27/src/platyPS/platyPS.psm1#L1458

Issue-Enhancement
Needs-Investigation
Needs-Retest

If you want to generate an external help cab, it seems you need to have created the module page when you run New-MarkdownHelp. But what if you didn't? There's no...

Issue-Enhancement

It would be nice if platyPS supported saving default configuration to a file like yaml similar to other dev ops pipeline tools instead of specifying switches on each update/merge/new command.

Issue-Enhancement

Would it be possible to generate markdown help, probably closer related to the about help markdown creation via a module manifest psd1 file? Or is there perhaps a best practice...

Issue-Enhancement

I have a project I'm using platyPS to generate documentation for existing cmdlets. My module also includes some DSC Resources. I am trying to figure out how to produce docs...

Area-DSC
Issue-Enhancement

Steps to reproduce ------------------ Create a script equivalent to New-MarkdownHelp [example 1](https://github.com/PowerShell/platyPS/blob/master/docs/New-MarkdownHelp.md#example-1-create-help-from-a-command), name it `Example1.ps1` and execute it. ```PowerShell # Example1.ps1 function Command03 {param([string]$Value)} New-MarkdownHelp -Command "Command03" -OutputFolder ".\docs" ```...

Documentation Needed

Steps to reproduce ------------------ in a c# cmdlet i define ```cs [Parameter(HelpMessage = "aaaaaaaaaaaaaaaaaaa")] public int ActivityId{ get; set; } ``` Expected behavior ----------------- I expect the module to understand...

Issue-Enhancement

Steps to reproduce ------------------ $path = 'C:\Users\banerjeeR\Projects\O365MigrationOps' Set-Location $path Import-Module .\O365MigrationOps.psm1 -Force New-MarkdownHelp -Module O365MigrationOps -OutputFolder $path\docs -WithModulePage -ModulePagePath $path\Index.md New-ExternalHelp .\docs -OutputPath en-US\ Open index.md and click a link...

Issue-Enhancement

I noticed in my latest build that Validation sets are not enumerated. Should they be? I ended up adding the enumeration myself to the `Region` parameter here: https://github.com/SpanningCloudApps/SB365-Powershell/blob/master/docs/Get-SpanningAuthentication.md Thanks

Needs-Investigation