`HelpOut` `Get-Help -Online`
Fun fact: the first .LINK in a PowerShell function is used for Get-Help -Online.
Since HelpOut helps you generate markdown help, presumably for online scenarios, it should be somewhat straightforward to modify a function so that its first link points to the correct location.
- [ ] #211
- [ ] #212
Fascinating! Does this override [CmdletBinding(HelpUri = 'https://day3bits.com/PSPreworkout/Edit-PSReadLineHistoryFile')] or does it only take effect if the HelpUri has not been specified?
@SamErde well, we're talking new functionality here, so, I'm not quite sure yet.
HelpUri isn't required: the first .Link will be counted as Get-Help online. So presumably that would be where it would be inserted.
I was not planning on overriding anything, merely putting it in if it did not exist.