Skip to content

Commit 7e4241a

Browse files
StartAutomatingStartAutomating
authored andcommitted
Join-PipeScript: Improving Unnamed end block behavior (Fixes #363)
1 parent f2ddd54 commit 7e4241a

File tree

1 file changed

+30
-10
lines changed

1 file changed

+30
-10
lines changed

docs/Pipescript.md

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
Pipescript
22
----------
3+
4+
5+
6+
37
### Synopsis
48
The Core PipeScript Transpiler
59

10+
11+
612
---
13+
14+
715
### Description
816

917
The Core PipeScript Transpiler.
@@ -12,7 +20,11 @@ This will convert various portions in the PowerShell Abstract Syntax Tree from t
1220

1321
It 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

7494
A 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

91109
One 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
108129
Pipescript [-ScriptBlock] <ScriptBlock> [-Transpiler <String[]>] [<CommonParameters>]
109130
```
110-
---
111131

0 commit comments

Comments
 (0)