css - How to make a column bold in HTML output -
below powershell script. produces nicely formatted html table. i'd make single column bold (full % column). can't life of me think of way it. i've tried inserting bold tags in different places , tried thinking of way use replace since numbers change in columns can't think of way it. $symmid = 1555 $command1 = symfast -sid $symmid list -association -demand $command2 = symcfg -sid $symmid list -thin -pool -detail -gb $basedir = "c:\ts\scripts" $timestamp = get-date -format ddmmyyyy $cssfile = "$basedir\csstemplate.css" $css = get-content $cssfile $command1 > $basedir\archive_vp\archive_$timestamp.txt $command2 > $basedir\archive_pool\archive_$timestamp.txt $regex = '(?ms)p o o l s(.+?)\r\n\s*\r\n' $command2 = $command2 -join "`r`n" $command2 = [regex]::matches($command2,$regex) | foreach {$_.groups[1].value} $command2 = $command2 -split "`r`n" | select -skip 5 $command2format = $command2 | % { $column = ...