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