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 cdea070 commit c6a2591Copy full SHA for c6a2591
Formatting/Markdown.format.ps1
@@ -7,7 +7,10 @@ Write-FormatView -TypeName Markdown -Action {
7
$thisObject.Table | Format-Markdown
8
}
9
elseif ($thisObject.InputObject) {
10
- $thisObject.InputObject | Format-Markdown
+ $thisObject | Format-Markdown -InputObject { $thisObject.InputObject }
11
+ }
12
+ elseif ($thisObject.Heading -and ($thisObject.Code -or $this.CodeLanguage)) {
13
+ $thisObject | Format-Markdown
14
15
elseif ($thisObject.psobject.Properties.Length) {
16
$thisObject | Format-Markdown
0 commit comments