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 80dcb83 commit 5457456Copy full SHA for 5457456
tools/ImportExamples.ps1
@@ -313,7 +313,7 @@ function Update-ExampleFile {
313
Clear-Content $ExampleFile -Force
314
for ($d = 0; $d -lt $HeaderList.Count; $d++) {
315
$CodeValue = $ExampleList[$d].Trim()
316
- if($CodeValue-match "\b$CommandPattern\b"){
+ if ($CodeValue -match "\b$CommandPattern\b") {
317
$TitleValue = "### " + $HeaderList[$d].Trim()
318
$Code = "``````powershell`r$CodeValue`r`n``````"
319
$TotalText = "$TitleValue`r`n`n$Code`r`n$Description`r`n"
0 commit comments