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 1ef1a5a commit 02df5a1Copy full SHA for 02df5a1
PipeScript.format.ps1xml
@@ -48,12 +48,15 @@
48
$thisObject.Table | & ${PipeScript_Format-Markdown}
49
}
50
elseif ($thisObject.InputObject) {
51
- $thisObject.InputObject | & ${PipeScript_Format-Markdown}
+ $thisObject | & ${PipeScript_Format-Markdown} -InputObject { $thisObject.InputObject }
52
+ }
53
+ elseif ($thisObject.Heading -and ($thisObject.Code -or $this.CodeLanguage)) {
54
+ $thisObject | & ${PipeScript_Format-Markdown}
55
56
elseif ($thisObject.psobject.Properties.Length) {
57
$thisObject | & ${PipeScript_Format-Markdown}
58
} else {
- ''
59
+ "$thisObject"
60
61
</ScriptBlock>
62
</ExpressionBinding>
0 commit comments