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 477898c commit c335b01Copy full SHA for c335b01
en-us/SupportedLanguages.help.ps.txt
@@ -1,26 +1,4 @@
1
-These are all of the transpilers currently included in PipeScript:
2
-
3
4
~~~PipeScript{
5
- [PSCustomObject]@{
6
- Table = Get-Transpiler |
7
- Where-Object {
8
- $_.Parameters.Values |
9
- Where-Object { $_.ParameterType -eq [Management.Automation.CommandInfo] }
10
- } |
11
- Sort-Object Name |
12
- Select-Object @{
13
- Name='Language'
14
- Expression= {
15
- "[$($_.DisplayName -replace '^Inline\.')]($($_.Source -replace '^.+(?=Transpilers)'))" -replace '\\', '/'
16
- }
17
- }, @{
18
- Name='Synopsis'
19
- Expression= { $_.Synopsis -replace '[\s\r\n]+$' }
20
21
- Name='Pattern'
22
- Expression = { '```' + "$($_.ScriptBlock.Attributes.RegexPattern -replace '\|','\|')" + '```'}
23
24
+ $psLanguage | Out-String
25
}
26
~~~
0 commit comments