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 ceb2ca2 commit b808a7dCopy full SHA for b808a7d
Transpilers/Inline/README.ps1.md
@@ -9,13 +9,15 @@ PipeScript can currently be embedded in ```.>{@(Get-Transpiler -TranspilerPath $
9
Table = Get-Transpiler -TranspilerPath $pwd |
10
Select-Object @{
11
Name='Language'
12
- Expression= {$_.DisplayName -replace '^Inline\.'}
+ Expression= {
13
+ "[$($_.DisplayName -replace '^Inline\.')]($($_.Link))"
14
+ }
15
}, @{
16
Name='Synopsis'
17
Expression= { $_.Synopsis -replace '[\s\r\n]+$' }
18
- Name='Link'
- Expression = { $_.Name }
19
+ Name='Pattern'
20
+ Expression = { '```' + "$($_.ScriptBlock.Attributes.RegexPattern -replace '\|','\|')" + '```'}
21
}
22
23
0 commit comments