Skip to content

Commit b80e15e

Browse files
author
James Brundage
committed
Adding and Updating READMEs
1 parent 2f210e6 commit b80e15e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Commands/PostProcessing/README.ps.md

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

Comments
 (0)