Skip to content

Commit

Permalink
feat: Removing ColorTable from Index Template ( Fixes #35 )
Browse files Browse the repository at this point in the history
  • Loading branch information
James Brundage committed Feb 1, 2024
1 parent b97e3f6 commit 575a73d
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions docs/index.ps.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,4 @@ Get-Content .\4bitpreview.svg |
</a>
</div>

{% include ColorTable.md %}

~~~PipeScript{
$colors = 'Black', 'Red', 'Green', 'Yellow', 'Blue', 'Purple', 'Cyan', 'White',
'BrightBlack', 'BrightRed', 'BrightGreen', 'BrightYellow', 'BrightBlue', 'BrightPurple', 'BrightCyan', 'BrightWhite'
[PSCustomObject]@{
Table = @(foreach ($n in 0..15) {
[PSCustomObject]@{
"CSS Class" = "ANSI$n"
Color = $colors[$n]
Sample = "<span class='ANSI$n'>*</span>"
}
})
}
}
~~~
{% include ColorTable.md %}

0 comments on commit 575a73d

Please sign in to comment.