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 eb825f7 commit ca55c6cCopy full SHA for ca55c6c
Tools/Update-StandardsComments.ps1
@@ -107,7 +107,13 @@ foreach ($Standard in $StandardsInfo) {
107
}
108
continue
109
110
- $NewComment.Add(" $(EscapeMarkdown($Property.Value.ToString()))`n")
+ elseif ($Property.Value -is [System.Management.Automation.PSCustomObject]) {
111
+ $NewComment.Add(" $(ConvertTo-Json -InputObject $Property.Value -Depth 5 -Compress)`n")
112
+ continue
113
+ }
114
+ else {
115
+ $NewComment.Add(" $(EscapeMarkdown($Property.Value.ToString()))`n")
116
117
118
119
0 commit comments