Skip to content

Commit 919486a

Browse files
author
James Brundage
committed
Adding README for Wrapper Transpilers
1 parent 00aef36 commit 919486a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Transpilers/Wrappers/README.ps1.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)