Skip to content

Commit 11112fe

Browse files
StartAutomatingStartAutomating
authored andcommitted
Join-PipeScript: Improving Unnamed end block behavior (Fixes #363)
1 parent 6af0eb1 commit 11112fe

1 file changed

Lines changed: 28 additions & 20 deletions

File tree

docs/Kotlin.Template.md

Lines changed: 28 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
Kotlin.Template
22
---------------
3+
4+
5+
6+
37
### Synopsis
48
Kotlin Template Transpiler.
59

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

917
Allows PipeScript to generate Kotlin.
@@ -20,82 +28,82 @@ The Kotlin Inline PipeScript Transpiler will consider the following syntax to be
2028
* ```""```
2129
* ```''```
2230

31+
32+
2333
---
34+
35+
2436
### Parameters
2537
#### **CommandInfo**
2638

2739
The command information. This will include the path to the file.
2840

2941

3042

31-
> **Type**: ```[CommandInfo]```
3243

33-
> **Required**: true
3444

35-
> **Position**: named
3645

37-
> **PipelineInput**:true (ByValue)
46+
|Type |Required|Position|PipelineInput |
47+
|---------------|--------|--------|--------------|
48+
|`[CommandInfo]`|true |named |true (ByValue)|
3849

3950

4051

41-
---
4252
#### **AsTemplateObject**
4353

4454
If set, will return the information required to dynamically apply this template to any text.
4555

4656

4757

48-
> **Type**: ```[Switch]```
4958

50-
> **Required**: true
5159

52-
> **Position**: named
5360

54-
> **PipelineInput**:false
61+
|Type |Required|Position|PipelineInput|
62+
|----------|--------|--------|-------------|
63+
|`[Switch]`|true |named |false |
5564

5665

5766

58-
---
5967
#### **Parameter**
6068

6169
A dictionary of parameters.
6270

6371

6472

65-
> **Type**: ```[IDictionary]```
6673

67-
> **Required**: false
6874

69-
> **Position**: named
7075

71-
> **PipelineInput**:false
76+
|Type |Required|Position|PipelineInput|
77+
|---------------|--------|--------|-------------|
78+
|`[IDictionary]`|false |named |false |
7279

7380

7481

75-
---
7682
#### **ArgumentList**
7783

7884
A list of arguments.
7985

8086

8187

82-
> **Type**: ```[PSObject[]]```
8388

84-
> **Required**: false
8589

86-
> **Position**: named
8790

88-
> **PipelineInput**:false
91+
|Type |Required|Position|PipelineInput|
92+
|--------------|--------|--------|-------------|
93+
|`[PSObject[]]`|false |named |false |
94+
95+
8996

9097

9198

9299
---
100+
101+
93102
### Syntax
94103
```PowerShell
95104
Kotlin.Template -CommandInfo <CommandInfo> [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
96105
```
97106
```PowerShell
98107
Kotlin.Template -AsTemplateObject [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
99108
```
100-
---
101109

0 commit comments

Comments
 (0)