Skip to content

Commit

Permalink
style: Using Solid Block in Color Table
Browse files Browse the repository at this point in the history
Putting ANSI in <pre>
  • Loading branch information
James Brundage committed Apr 22, 2024
1 parent 57e52b4 commit 8ec8b99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/_includes/ColorTable.ps.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ $colors = 'Black', 'Red', 'Green', 'Yellow', 'Blue', 'Purple', 'Cyan', 'White',
[PSCustomObject]@{
Table = @(foreach ($n in 0..15) {
[PSCustomObject]@{
"ANSI" = "ANSI$n"
"ANSI" = "<pre>ANSI$n</pre>"
"Color" = $colors[$n]
Sample = "<span class='ANSI$n'>*</span>"
Sample = "<span class='ANSI$n'></span>"
}
})
}
Expand Down

0 comments on commit 8ec8b99

Please sign in to comment.