File tree Expand file tree Collapse file tree 1 file changed +30
-10
lines changed
Expand file tree Collapse file tree 1 file changed +30
-10
lines changed Original file line number Diff line number Diff line change 11Pipescript
22----------
3+
4+
5+
6+
37### Synopsis
48The Core PipeScript Transpiler
59
10+
11+
612---
13+
14+
715### Description
816
917The Core PipeScript Transpiler.
@@ -12,7 +20,11 @@ This will convert various portions in the PowerShell Abstract Syntax Tree from t
1220
1321It will run other converters as directed by the source code.
1422
23+
24+
1525---
26+
27+
1628### Related Links
1729* [ .>Pipescript.Function] ( .>Pipescript.Function.md )
1830
@@ -22,7 +34,11 @@ It will run other converters as directed by the source code.
2234
2335
2436
37+
38+
2539---
40+
41+
2642### Examples
2743#### EXAMPLE 1
2844``` PowerShell
@@ -67,45 +83,49 @@ It will run other converters as directed by the source code.
6783} | .>PipeScript
6884```
6985
86+
87+
7088---
89+
90+
7191### Parameters
7292#### ** ScriptBlock**
7393
7494A ScriptBlock that will be transpiled.
7595
7696
7797
78- > ** Type** : ``` [ScriptBlock] ```
7998
80- > ** Required** : true
8199
82- > ** Position** : 1
83100
84- > ** PipelineInput** : true (ByValue)
101+ | Type | Required| Position| PipelineInput |
102+ | ---------------| --------| --------| --------------|
103+ | ` [ScriptBlock] ` | true | 1 | true (ByValue)|
85104
86105
87106
88- ---
89107#### ** Transpiler**
90108
91109One or more transpilation expressions that apply to the script block.
92110
93111
94112
95- > ** Type** : ``` [String[]] ```
96113
97- > ** Required** : false
98114
99- > ** Position** : named
100115
101- > ** PipelineInput** : false
116+ | Type | Required| Position| PipelineInput|
117+ | ------------| --------| --------| -------------|
118+ | ` [String[]] ` | false | named | false |
119+
120+
102121
103122
104123
105124---
125+
126+
106127### Syntax
107128``` PowerShell
108129Pipescript [-ScriptBlock] <ScriptBlock> [-Transpiler <String[]>] [<CommonParameters>]
109130```
110- ---
111131
You can’t perform that action at this time.
0 commit comments