如何避免PowerShell内联文档中的换行符

当我将以下文档添加到Power
Shell函数时:

.PARAMETER Test
The test parameter is nice
and it looks pretty cool.

当我使用Get-Help FunctionName -Parameter Test命令时,我得到了这个帮助:

-Test <Object>
    The test parameter is nice
    and it looks pretty cool.

我希望它是:

-Test <Object>
    The test parameter is nice and it looks pretty cool.

我怎样才能避免换行?

我想在源代码中使用换行符,因为长行很难读.该示例有一个简短的段落,但我真正的内联文档确实有很长的段落.

最佳答案 我没有看到任何其他选项,只能写一行.如果您有长行尝试在80个字符左右后打破它们.

点赞