1
1
WebAssembly.Template
2
2
--------------------
3
+
4
+
5
+
6
+
3
7
### Synopsis
4
8
WebAssembly Template Transpiler.
5
9
10
+
11
+
6
12
---
13
+
14
+
7
15
### Description
8
16
9
17
Allows PipeScript to generate WebAssembly.
@@ -12,82 +20,82 @@ Multiline comments blocks like this ```(;{
12
20
13
21
};)``` will be treated as blocks of PipeScript.
14
22
23
+
24
+
15
25
---
26
+
27
+
16
28
### Parameters
17
29
#### ** CommandInfo**
18
30
19
31
The command information. This will include the path to the file.
20
32
21
33
22
34
23
- > ** Type** : ``` [CommandInfo] ```
24
35
25
- > ** Required** : true
26
36
27
- > ** Position** : named
28
37
29
- > ** PipelineInput** : true (ByValue)
38
+ | Type | Required| Position| PipelineInput |
39
+ | ---------------| --------| --------| --------------|
40
+ | ` [CommandInfo] ` | true | named | true (ByValue)|
30
41
31
42
32
43
33
- ---
34
44
#### ** AsTemplateObject**
35
45
36
46
If set, will return the information required to dynamically apply this template to any text.
37
47
38
48
39
49
40
- > ** Type** : ``` [Switch] ```
41
50
42
- > ** Required** : true
43
51
44
- > ** Position** : named
45
52
46
- > ** PipelineInput** : false
53
+ | Type | Required| Position| PipelineInput|
54
+ | ----------| --------| --------| -------------|
55
+ | ` [Switch] ` | true | named | false |
47
56
48
57
49
58
50
- ---
51
59
#### ** Parameter**
52
60
53
61
A dictionary of parameters.
54
62
55
63
56
64
57
- > ** Type** : ``` [IDictionary] ```
58
65
59
- > ** Required** : false
60
66
61
- > ** Position** : named
62
67
63
- > ** PipelineInput** : false
68
+ | Type | Required| Position| PipelineInput|
69
+ | ---------------| --------| --------| -------------|
70
+ | ` [IDictionary] ` | false | named | false |
64
71
65
72
66
73
67
- ---
68
74
#### ** ArgumentList**
69
75
70
76
A list of arguments.
71
77
72
78
73
79
74
- > ** Type** : ``` [PSObject[]] ```
75
80
76
- > ** Required** : false
77
81
78
- > ** Position** : named
79
82
80
- > ** PipelineInput** : false
83
+ | Type | Required| Position| PipelineInput|
84
+ | --------------| --------| --------| -------------|
85
+ | ` [PSObject[]] ` | false | named | false |
86
+
87
+
81
88
82
89
83
90
84
91
---
92
+
93
+
85
94
### Syntax
86
95
``` PowerShell
87
96
WebAssembly.Template -CommandInfo <CommandInfo> [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
88
97
```
89
98
``` PowerShell
90
99
WebAssembly.Template -AsTemplateObject [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
91
100
```
92
- ---
93
101
0 commit comments