Skip to content

Commit 37320e4

Browse files
StartAutomatingStartAutomating
authored andcommitted
Join-PipeScript: Improving Unnamed end block behavior (Fixes #363)
1 parent a5e159c commit 37320e4

File tree

1 file changed

+28
-20
lines changed

1 file changed

+28
-20
lines changed

docs/WebAssembly.Template.md

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

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

917
Allows PipeScript to generate WebAssembly.
@@ -12,82 +20,82 @@ Multiline comments blocks like this ```(;{
1220

1321
};)``` will be treated as blocks of PipeScript.
1422

23+
24+
1525
---
26+
27+
1628
### Parameters
1729
#### **CommandInfo**
1830

1931
The command information. This will include the path to the file.
2032

2133

2234

23-
> **Type**: ```[CommandInfo]```
2435

25-
> **Required**: true
2636

27-
> **Position**: named
2837

29-
> **PipelineInput**:true (ByValue)
38+
|Type |Required|Position|PipelineInput |
39+
|---------------|--------|--------|--------------|
40+
|`[CommandInfo]`|true |named |true (ByValue)|
3041

3142

3243

33-
---
3444
#### **AsTemplateObject**
3545

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

3848

3949

40-
> **Type**: ```[Switch]```
4150

42-
> **Required**: true
4351

44-
> **Position**: named
4552

46-
> **PipelineInput**:false
53+
|Type |Required|Position|PipelineInput|
54+
|----------|--------|--------|-------------|
55+
|`[Switch]`|true |named |false |
4756

4857

4958

50-
---
5159
#### **Parameter**
5260

5361
A dictionary of parameters.
5462

5563

5664

57-
> **Type**: ```[IDictionary]```
5865

59-
> **Required**: false
6066

61-
> **Position**: named
6267

63-
> **PipelineInput**:false
68+
|Type |Required|Position|PipelineInput|
69+
|---------------|--------|--------|-------------|
70+
|`[IDictionary]`|false |named |false |
6471

6572

6673

67-
---
6874
#### **ArgumentList**
6975

7076
A list of arguments.
7177

7278

7379

74-
> **Type**: ```[PSObject[]]```
7580

76-
> **Required**: false
7781

78-
> **Position**: named
7982

80-
> **PipelineInput**:false
83+
|Type |Required|Position|PipelineInput|
84+
|--------------|--------|--------|-------------|
85+
|`[PSObject[]]`|false |named |false |
86+
87+
8188

8289

8390

8491
---
92+
93+
8594
### Syntax
8695
```PowerShell
8796
WebAssembly.Template -CommandInfo <CommandInfo> [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
8897
```
8998
```PowerShell
9099
WebAssembly.Template -AsTemplateObject [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
91100
```
92-
---
93101

0 commit comments

Comments
 (0)