We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0107d2 commit 1ace6eaCopy full SHA for 1ace6ea
docs/JavaScript.Template.md
@@ -21,6 +21,29 @@ The JavaScript Inline Transpiler will consider the following syntax to be empty:
21
* ```""```
22
* ```''```
23
24
+---
25
+### Examples
26
+#### EXAMPLE 1
27
+```PowerShell
28
+$helloJs = Hello.js template '
29
+msg = null /*{param($msg = ''hello world'') "`"$msg`""}*/ ;
30
+if (console) {
31
+ console.log(msg);
32
+}
33
+'
34
+```
35
+
36
+#### EXAMPLE 2
37
38
+$helloMsg = {param($msg = 'hello world') "`"$msg`""}
39
+$helloJs = HelloWorld.js template "
40
+msg = null /*{$helloMsg}*/;
41
42
43
44
+"
45
46
47
---
48
### Parameters
49
#### **CommandInfo**
0 commit comments