When I add the following documentation to the PowerShell function:
.PARAMETER Test The test parameter is nice and it looks pretty cool.
I get this help when I use the Get-Help FunctionName -Parameter Test :
-Test <Object> The test parameter is nice and it looks pretty cool.
I want this to be:
-Test <Object> The test parameter is nice and it looks pretty cool.
How can I avoid line breaks?
I want a line to break in my source code because long lines are hard to read. The sample has a short paragraph, but my actual inline documentation has long paragraphs.
source share