Jeff Hicks
Jeff Hicks
This is a terrific project, especially for IT Pros like myself trying to learn Git. For those people, I created a simple PowerShell script that I run every time I...
In my OutputHandler I'm trying to include some basic error handling. I want to be able to include a command in the handler like ```powershell Write-Warning "Failed to find a...
Steps to reproduce ------------------ You can try to install any script you want. You aren't going to actually run it. ```powershell Install-Script Get-MyAge -force Get-Command -commandtype ExternalScript ``` Expected behavior...
In using v0.2.7, Invoke-PSCodehealth is detecting all functions, but it treats them the same. There's nothing wrong with detecting all the functions, but they should be identified as private or...
In looking at your code I see you are relying on comment based help. I'd recommend using the Platyps module and create external help from a set of markdown documents....
I also have a question on how you determine what a proper function length is. From your blog post I appreciate the notion that sometimes you need to refactor. But...
Since many people using this module may be new to markdown, the module needs to be a bit more forgiving. I'd put myself in this category as well. Most IT...
This is an annoying problem that I find in several files. My markdown file will show a syntax like this: ```yaml Install-PowerShell [[-Path] ] [-EnableRemoting] [-EnableContextMenu] [-EnableRunContext] [[-Mode] ] [-WhatIf]...
Because many of the commands in this module are changing state, shouldn't they support -WhatIf? Personally, I find this very important when creating external help to make sure I haven't...
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...