We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891c644 commit efccd73Copy full SHA for efccd73
Transpilers/Help.psx.ps1
@@ -29,19 +29,24 @@
29
#>
30
[CmdletBinding(DefaultParameterSetName='Parameter')]
31
param(
32
+# The synopsis of the help topic
33
[Parameter(Mandatory,Position=0)]
34
[string]
35
$Synopsis,
36
37
+# The description of the help topic
38
39
$Description,
40
41
+# One or more examples
42
[string[]]
43
$Example,
44
45
+# One or more links
46
47
$Link,
48
49
+# A ScriptBlock. If this is provided, the help will be added to this scriptblock.
50
[Parameter(ValueFromPipeline,ParameterSetName='ScriptBlock')]
51
[scriptblock]
52
$ScriptBlock
0 commit comments