11TCL.Template
22------------
3+
4+
5+
6+
37### Synopsis
48TCL/TK Template Transpiler.
59
10+
11+
612---
13+
14+
715### Description
816
917Allows PipeScript to generate TCL or TK.
@@ -26,7 +34,11 @@ Uncommented lines between these two points will be ignored
2634# }
2735~~~
2836
37+
38+
2939---
40+
41+
3042### Examples
3143#### EXAMPLE 1
3244``` PowerShell
@@ -47,82 +59,82 @@ Uncommented lines between these two points will be ignored
4759}
4860
4961Invoke-PipeScript .\HelloWorld.ps1.tcl
62+
63+
5064---
65+
66+
5167### Parameters
5268#### ** CommandInfo**
5369
5470The command information. This will include the path to the file.
5571
5672
5773
58- > ** Type** : ``` [CommandInfo] ```
5974
60- > ** Required** : true
6175
62- > ** Position** : named
6376
64- > ** PipelineInput** : true (ByValue)
77+ | Type | Required| Position| PipelineInput |
78+ | ---------------| --------| --------| --------------|
79+ | ` [CommandInfo] ` | true | named | true (ByValue)|
6580
6681
6782
68- ---
6983#### ** AsTemplateObject**
7084
7185If set, will return the information required to dynamically apply this template to any text.
7286
7387
7488
75- > ** Type** : ``` [Switch] ```
7689
77- > ** Required** : true
7890
79- > ** Position** : named
8091
81- > ** PipelineInput** : false
92+ | Type | Required| Position| PipelineInput|
93+ | ----------| --------| --------| -------------|
94+ | ` [Switch] ` | true | named | false |
8295
8396
8497
85- ---
8698#### ** Parameter**
8799
88100A dictionary of parameters.
89101
90102
91103
92- > ** Type** : ``` [IDictionary] ```
93104
94- > ** Required** : false
95105
96- > ** Position** : named
97106
98- > ** PipelineInput** : false
107+ | Type | Required| Position| PipelineInput|
108+ | ---------------| --------| --------| -------------|
109+ | ` [IDictionary] ` | false | named | false |
99110
100111
101112
102- ---
103113#### ** ArgumentList**
104114
105115A list of arguments.
106116
107117
108118
109- > ** Type** : ``` [PSObject[]] ```
110119
111- > ** Required** : false
112120
113- > ** Position** : named
114121
115- > ** PipelineInput** : false
122+ | Type | Required| Position| PipelineInput|
123+ | --------------| --------| --------| -------------|
124+ | ` [PSObject[]] ` | false | named | false |
125+
126+
116127
117128
118129
119130---
131+
132+
120133### Syntax
121134``` PowerShell
122135TCL.Template -CommandInfo <CommandInfo> [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
123136```
124137``` PowerShell
125138TCL.Template -AsTemplateObject [-Parameter <IDictionary>] [-ArgumentList <PSObject[]>] [<CommonParameters>]
126139```
127- ---
128140
0 commit comments