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 2f210e6 commit b80e15eCopy full SHA for b80e15e
Commands/PostProcessing/README.ps.md
@@ -0,0 +1,16 @@
1
+## PostProcessing Commands
2
+
3
+PostProcessing commands can run after PipeScript has built a script or function.
4
5
+A PostProcessing command will be passed the script or function and will return a new script or function if anything was modified.
6
7
+~~~PipeScript{
8
+ [PSCustomObject]@{
9
+ Table = Get-PipeScript -PipeScriptType PostProcessing |
10
+ Select-Object Name, Synopsis, @{
11
+ Name='Link'
12
+ Expression = { "/docs/$($_.Name).md" }
13
+ }
14
15
+}
16
+~~~
0 commit comments