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

Steps to reproduce ------------------ I ran the following command to get our individual markdown topics into MAML files for check-in back into code: ``` New-ExternalHelp -Path -ApplicableTag "" -OutputPath -ErrorLogFile...

Area-MAML
Needs-Investigation

These are really "see also" links in the sense that there isn't a link per se, just a reference to related commands. For instance, look at the bottom of full...

Area-Comment-Based-Help

Why doesn't Update-MarkdownHelpModule have the UseFullTypeName switch, as with New-MarkdownHelp & Update-MarkdownHelp? Had a look at Update-MarkdownHelpModule and it looks pretty strait forward

Area-UpdateMarkdown
Needs-Retest

So say I have a script that I have made publishable, and it's something that doesn't make sense to be its own module. So I've utilized the powershell command `New-scriptfileinfo`...

Area-MarkdownWriter

Enhancement proposal ------------------ Based on the example of the [Pester module](https://github.com/Pester/Pester) we have existing about help files ``` PS Pester> ls -la ./en-US/ total 56 drwxrwxr-x. 2 user user 4096...

Area-MarkdownWriter

Steps to reproduce ------------------ ``` function Get-HashValueFromString { [CmdletBinding()] Param ( [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [String] $string , [parameter(Mandatory=$false)] [ValidateSet("SHA1", "SHA256", "SHA384", "SHA512", "MACTripleDES", "MD5", "RIPEMD160")] [String] $algorithm = "SHA256" ) END{...

Area-MarkdownWriter

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...

Area-MarkdownWriter

Except for New-MarkdownAboutHelp, all of the functions in the PlatyPS module create the directories specified in the value of the OutputPath parameters. Is there some reason that this function does...

Area-MarkdownWriter

Steps to reproduce ------------------ In Markdown, just pressing Enter doesn't necessarily mean that a line-break will be rendered in the document when it's transformed to HTML. So markdown originally specified...

Area-MAML

I have a markdown help file ( [Get-Test.md.txt](https://github.com/PowerShell/platyPS/files/2433663/Get-Test.md.txt) ) created with _New-MarkdownHelp_ that has 2 parameter sets. Calling New-ExternalHelp results in a MAML that has only 1 `. After a...

Area-MAML