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 00aef36 commit 919486aCopy full SHA for 919486a
Transpilers/Wrappers/README.ps1.md
@@ -0,0 +1,17 @@
1
+Files in this directory and it's subdirectories generate wrappers for PipeScript and PowerShell.
2
+
3
+These wrappers allow PipeScript or PowerShell to be called from other programming languages.
4
5
+~~~PipeScript{
6
+ [PSCustomObject]@{
7
+ Table = Get-Transpiler -TranspilerPath $pwd |
8
+ Select-Object DisplayName, @{
9
+ Name='Synopsis'
10
+ Expression= { $_.Synopsis -replace '[\s\r\n]+$' }
11
+ }, @{
12
+ Name='Link'
13
+ Expression = { $_.Name }
14
+ }
15
16
+}
17
+~~~
0 commit comments