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

时间:2011-07-04 10:56:05

标签: powershell

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

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

如何避免换行?

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

1 个答案:

答案 0 :(得分:2)

我没有看到任何其他选项,只能将其写在一行中。如果您有长行,请尝试在80个字符左右后将其分解。